// ページ独自のJavaScript

function fullscreen(msid, user_id, sample){

	url = "room/mindshare/swf/mindshare.php?msid=" + msid + "&userid=" + user_id + "&sample=" + sample;
	newwindow = window.open(url,"win"+msid,
	"resizable, scrollbars,width=" + window.screen.width + ", height=" + window.screen.height);
	newwindow.moveTo(0,0);
	newwindow.focus();
}

