function MapWindow(targetUrl,windowTitle,tBar,wWidth,wHeight)  {
	var windowArgs;
	windowArgs = "toolbar=" + tBar + ",width=" + wWidth + ",height=" + wHeight;
	window.open(targetUrl,windowTitle,windowArgs)
}

function NewMapWindow(targetUrl) {
        window.open(targetUrl,'MapIt','toolbar=no,width=800,height=800');
}
