/* TOP用マイリストポップアップ */

function OPlist(){
window.open("./copy/mylist.php" , "" , "width=625,height=700,toolbar=yes,resizable=yes");
}

function OPhowto(){
window.open("./copy/list_howto.html" , "" , "width=625,height=700,toolbar=yes,resizable=yes");
}

/* 2階層目用マイリストポップアップ */
function OPlist2(){
window.open("../copy/mylist.php" , "" , "width=625,height=700,toolbar=yes,resizable=yes");
}
function OPhowto2(){
window.open("../copy/list_howto.html" , "" , "width=625,height=700,toolbar=yes,resizable=yes");
}

/* 3階層目用マイリストポップアップ */
function OPlist3(){
window.open("../../copy/mylist.php" , "" , "width=625,height=700,toolbar=yes,resizable=yes");
}
function OPhowto3(){
window.open("../../copy/list_howto.html" , "" , "width=625,height=700,toolbar=yes,resizable=yes");
}

/* ウィンドウクローズ */
function CloseWin(){
window.close();
}

/* Google Map */
function load() {
if (GBrowserIsCompatible()) {
var map = new GMap2(document.getElementById("map"));
map.setCenter(new GLatLng(35.689231, 139.707856), 16);

//マーカーを追加
var marker = new GMarker(new GLatLng(35.689231,139.707856));
map.addOverlay(marker);
//マップコントローラ
map.addControl(new GLargeMapControl());

}
}

function CheckHistory() {
	preWin = document.referrer; 
	refWin = "copy0510.com"; 
	if (preWin.indexOf(refWin,0) >= 0 ) {
		history.back();
	} else {
		location.href = "http://copy0510.com/copy/index.php";
	} 
}
