// JavaScript Documentif ((navigator.appVersion.indexOf("Mac") != -1)) {        document.write("<link rel=stylesheet href=\"../css/style-mac.css\" type=\"text/css\">"); }else{        document.write("<link rel=stylesheet href=\"../css/style-win.css\" type=\"text/css\">"); }/*複数の小ウインドウを開きたい場合 … <a href="javascript:launchWin('');"></a>*/// ウインドウの横幅を指定var WIDTH = 600;// ウインドウの縦幅を指定var HEIGHT = 600; // 解説：ポップアップウインドウを表示function launchWin(URL) { window.open(URL, '', "width=600,height=600,left=0,top=0,menubar=0,location=0,resizable=1,scrollbars=yes,status=0,directories=0");}// 一つのウインドウを書き換える場合function subWin(openMe) {	pop=window.open(openMe,"subWin","width=600,height=600,left=0,top=0,menubar=0,location=0,resizable=1,scrollbars=yes,status=0,directories=0");}/*subWinから親winを制御するのに必要*/function viewWin(wURL){	if (opener.closed){		newWin=window.open("","MainWindow"); 		newWin.location.href=wURL;		}		else{			opener.location.href=wURL;		}	}
