//##############################################################################################//
//
//                                             main.js
//
//##############################################################################################//
// 共通関数

//---------------------------------------------------//
//
// 					　　openWindow
//
//---------------------------------------------------//
// 機　能：ポップアップウインドウを開く
//
function openWindow(FileName,WindowName,Wsize,Hsize){

	window.open(FileName,WindowName,"width=" + Wsize + ",height=" + Hsize + ",toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=yes,resizable=no");
	
}
//---------------------------------------------------//
//
// 					　　closeAndReload
//
//---------------------------------------------------//
// 機　能：	親ウインドウをリロード後、閉じる
//
// 備　考：	ポップアップウインドウでデータ登録をした時に、
// 			親ウインドウのリロードを行う場合に利用する
//
function closeAndReload(){

	opener.location.reload();
	window.close();
	
}
//---------------------------------------------------//
//
// 					　　accTracker
//
//---------------------------------------------------//
// 機　能：アクセス解析
//
function accTracker(){
	document.write("<img width='0' height='0' src='/acc/acclog.cgi?");
	document.write("referrer="+document.referrer+"&");
	document.write("width="+screen.width+"&");
	document.write("height="+screen.height+"&");
	document.write("color="+screen.colorDepth+"'>");
}
//---------------------------------------------------//
//
// 					　　openUrl
//
//---------------------------------------------------//
// 機　能：	リンクを新しいウインドウで開く
//
function openUrl(url){
	window.open(url,"_top");
}
