// JavaScript Document

// 自由サイズでサブウィンドウを開く
// 例：横400px 縦600px で../xxx.htmlを開く→<a href="javascript:popUp('../xxx.html',400,600);">リンク</a>
function popUp(url, w, h){
	window.open(url,"popWin","width="+w+",height="+h+"status=no,directories=no,toolbar=no,menubar=no,scrollbars=yes,resizable=yes").focus();
}

// サブウィンドウのリンクを親ウィンドウで開く
// 例：<a href="javascript:disp('../xxx.html');">リンク</a>
function disp(url){
	if(!window.opener || window.opener.closed){ // メインウィンドウの存在をチェック
		window.alert('メインウィンドウがありません'); // 存在しない場合は警告ダイアログを表示
	}
	else{
		window.opener.location.href = url; // 存在する場合はページを切りかえる
	}
}

//マップ用ポップアップ
function map(url){
	window.open(url,"mWin","width=760,status=no,directories=no,toolbar=no,menubar=no,scrollbars=yes,resizable=yes").focus();
}

//バス詳細用ポップアップ
function bus(url){
	window.open(url,"bWin","width=680,height=500,status=no,directories=no,toolbar=no,menubar=no,scrollbars=yes,resizable=yes").focus();
}

