/* スペシャルコーナー標準JavaScriptファイル
   2001.08.02 記
*/

/* 標準のウィンドウ 600×600 ：スクロールバーあり */
function OpenWin(html_file){
	var win1=window.open(html_file,'amitake1','toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,width=600,height=600');
	win1.document.close();
}
/* サイズ指定(X, Y)のウインドウ ：スクロールバー無し */
function OpenWinSize(html_file, X, Y){
	var win1=window.open(html_file,'amitake1','toolbar=no,location=no,status=no,menubar=no,scrollbars=no,width=' +X+ ',height=' +Y);
	win1.document.close();
}
/* 標準の日付を表示する */
function PrintNowDate(){
	var now,y,ya;
	now = new Date();
	ya = new Array("日","月","火","水","木","金","土");
	y = now.getDay();
	year = now.getYear();
	if(year < 2000) { year = year + 1900; }
	document.write("平成",year-1988,"年");
	document.write(now.getMonth()+1,"月",now.getDate(),"日");
	document.write("(", ya[y] + ")");
}
