﻿//西三医協のindex画面に戻るスクリプト
function quitshopping() {
	if(!window.opener || window.opener.closed){
　　　　//親ウィンドウが存在しない場合indexを開いてから閉じる
		newWin = window.open("index.htm");
		(window.open('','_top').opener=top).close();	//IE7以降のアラートを出さない閉じ方	
　	}else{
　　　　(window.open('','_top').opener=top).close();	//親ウィンドウがある場合  
  	}
}


// メールフォームの大きさを指定して中央に開くスクリプト
function openWindowC() {
	  w = 700; // 横幅
	  h = 650; // 縦幅
	  x = (screen.width - w) / 2;
	  y = (screen.height - h) / 2;
	  subWin = window.open("mailform.php","MailForm", "screenX="+x+",screenY="+y+",left="+x+",top="+y+",width="+w+",height="+h+",scrollbars=yes");
}

// 不動産情報のリンク先選択ポップアップを開くスクリプト
function openWindowP() {
	  w = 200; // 横幅
	  h = 220; // 縦幅
	  x = (screen.width - w)-100;
	  y = (screen.height - h)-200;
	  subWin = window.open("popup2.htm","名鉄不動産物件情報", "left="+x+",top="+y+",width="+w+",height="+h+",status=no,scrollbars=no,menubar=no,location=no,toolbar=no,resizable=no");
}
