
function openWindow(fileName, width, height) {
	window.open(fileName,'zoom','width='+width+',height='+height+',directories=no,location=no,menubar=no,scrollbars=no,status=no,toolbar=no,resizable=no');
}
function openMapWindow(){
	openWindow('map.html','700','500');
}
