/* start script */

// 地図ウィンドウを開く
// 呼び出し方式　<a href="javascript:OpenMap('ＵＲＬ'); ">
function OpenMap(para) {
	var Win;
	Win=window.open(para, "map", "toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizeable=yes,width=750,height=705");
	Win.focus();
	}

// 地図ウィンドウを開く・旧
function openMapOld() {window.open("","map",'toolbar=0,location=0,scrollbars=1,resizable=1,width=750,height=705');}

// テキストウィンドウを開く
function openText() {window.open("","text",'toolbar=0,location=0,scrollbars=1,resizable=1,width=350,height=200');}

// リンクウィンドウを開く
function openLink() {window.open("","link",'toolbar=1,location=1,scrollbars=1,resizable=1,width=700,height=400');}

/* end script */
