
function openWindow(url,winname,w,h,wOptions){
	var w_Center,h_Center
	if(window.screen){
		if(!h){	h = screen.availHeight * 0.8; }
		w_Center = screen.availWidth / 2;
		h_Center = screen.availHeight / 2;
		wOptions += ",width="+w+",height="+h+",left="+(w_Center-(w/2))+",top="+(h_Center-(h/2));
	}else{
		if(!h){	h = 400; }
		wOptions += ",width="+w+",height="+h;
}	



//処理実行
window.open(url,winname,wOptions);
}

function chksubmit(){
	if(confirm('※ 確認！\n\nこちらの内容で送信してよろしいですか？')){
		return true;
	}else{
		return false;
	}

}
