	var newMapWindow = null
	var URL = null
	
function makeNewMapWindow(URL, wname) {
	newMapWindow =
	window.open(URL,wname,"height=380,width=560,scrollbars=0")
	newMapWindow.focus()
}


function closeWindow() {
	newMapWindow.close()
}



