<!--

var win1;
var iwidth = screen.availWidth;	//画面横幅
function WinOpen() {
	//ウインドウオープン→画面右端に移動
	win1=window.open("","win1","status=no,location=0,scrollbars=yes,resizable=no,toolbar=0,directories=0,menubar=0,width=360,height=360");
	win1.moveTo(iwidth-375, 0);
}


//-->

