// MAP ENLARGED

function launchWindow() {
  var url = "map.html";
  var windowName = "Map";
var winwidth = 486;
var winheight = 375;
var winx  = screen.width/2 - winwidth/2;
var	winy  = screen.height/2 - winheight/2;
  window.open( url, windowName, 
		"left=" + winx + ",top=" + winy + ",screenX=" + winx + ",screenY=" + winy + ",history=no,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=no,resizable=no,width=" +
winwidth + ",height=" + winheight);
 }
