// サブウィンドウを開く

/*
	引数の解説
	url				開く対象のURL(絶対パス、相対パス可)
	width		ウインドウの幅
	height		ウインドウの高さ
	scrollmode	スクロールバーの表示非表示きりかえ（yes or no）
*/



function WinOpen(url,width,height,scrollmode){
	var win = window.open(url,"_blank","toolbar=yes,location=no,directories=no,status=yes,menubar=no,scrollbars=" + scrollmode + ",resizable=yes,width=" + width + ",height=" + height + "\"");
	win.focus();
}
