//<!--
// Set the default directory for stock photos
var StockDir = "library/stock/";
// Pre-define the timer handle to avoid errors
var closezoom = "";

// Function to open and show a full sized image
function ZoomIn(id,image,size) {
	if (closezoom) {clearTimeout(closezoom);}
	eval("document." + id + ".src='" + StockDir + image + "';");
	eval("document." + id + ".width='" + size + "';");
	eval("document." + id + ".height='" + size + "';");
}

// 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';");
	}
}
//-->

