//<!--
// Set the default directory for stock photos
var StockDir = "uploads/";
// Pre-define the timer handle to avoid errors
var closezoom = "";
// Function to open and show a full sized image
function ZoomIn(id,image) {
	if (closezoom) {clearTimeout(closezoom);}
	eval("document." + id + ".src='" + StockDir + image + "';");
	eval("document." + id + ".width='500';");
	eval("document." + id + ".height='500';");
}
// Function to set the timer to close the zoom image
function ZoomOut(id,width) {
	closezoom = eval("setTimeout(\"CloseZoom('" + id + "'," + width + ")\",400)");
}
// Function to actually close the zoom image
function CloseZoom(id,width) {
	eval("document." + id + ".width='" + width + "';");
	if (id != "necklace_clasp") {
		eval("document." + id + ".height='0';");
	} else {
		eval("document." + id + ".height='150';");
	}
}
//-->


