// JavaScript Document
var subWin;

function openwindow(){
	subWin=window.open('./map.html','map','resizable=1,scrollbars=0,status=1,width=550,height=600');
	subWin.focus();
}

function openwindow2(){
	subWin=window.open('../map.html','map','resizable=1,scrollbars=0,status=1,width=550,height=600');
	subWin.focus();
}


function cls(){
	close();
}

