// JavaScript Document

	<!-- // Hide from old browsers.
	
	// Make a pop-up window function.
	function create_window (image, width, height) {
	
		// Add some pixels to the width and height.
		width = width + 100;
		height = height + 100;
		
		// 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=yes, menubars=no, toolbars=no, resizable=yes, left=30, top=15, width=" + width + ", height=" + height;
		
		// use javascript escape function for url encoding
		var image_esc = escape(image);
		// Set the URL.
		var url = "bigproductimage.php?image=" + image_esc;
		
		// Create the pop-up window.
		popup_window = window.open(url, "BigProductImage", window_specs);
		popup_window.focus();
		
	} // End of function.
	//-->