// Java Script
function openMapWindow(mapUrl,windowName,width,height) {
	window.open(mapUrl,windowName,"toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width="+width+",height="+height)
}
function openGalleryWindow(url, windowName, theWidth, theHeight) {
	window.open(url,windowName,"toolbar=1,location=0,directories=0,status=0,menubar=1,scrollbars=1,resizable=1,width="+theWidth+",height="+theHeight)
	}

