// JavaScript Document
function openMap(){
    win=window.open("map.html","new","width=520,height=330,top=0,left=0,menubar=0,toolbar=0,scrollbars=1,resizable=1");
	wx = 520;
	wy = 330;
	x = ( screen.width - wx)/2;
	y = ( screen.height - wy)/2;
	win.moveTo(x,y);
}