


<!--

function create_window_maps (image, width, height) {
	
	
		
		// If the window is already open, resize it to the new dimensions.
		if (window.popup_window && !window.popup_window.closed) {
			window.popup_window.resizeTo(width, height);
		} 
		
		// Set the window properties.
		var window_specs = "location=no, scrollbars=no, menubars=no, toolbars=no, resizable=yes, left=0, top=300, width=" + width + ", height=" + height;
		
		// Set the URL.
		var url = "image_window_maps.php?image_name=" + image;
		
		// Create the pop-up window.
		popup_window = window.open(url, "PictureWindow", window_specs);
		popup_window.focus();
		
	} // End of function.
	
function create_window (image, width, height) {
	
		
		
		// If the window is already open, resize it to the new dimensions.
		if (window.popup_window && !window.popup_window.closed) {
			window.popup_window.resizeTo(width, height);
		} 
		
		// Set the window properties.
		var window_specs = "location=no, scrollbars=no, menubars=no, toolbars=no, resizable=yes, left=0, top=300, width=" + width + ", height=" + height;
		
		// Set the URL.
		var url = "image_window.php?image_name=" + image;
		
		// Create the pop-up window.
		popup_window = window.open(url, "PictureWindow", window_specs);
		popup_window.focus();
		
	} // End of function.



//-->
