function zoomProduct(theCount,theID) {
	for (var x = 1; x <= theCount; x++) {
		if (theID == x)
			document.getElementById("product"+x).style.display = ""
		else
			document.getElementById("product"+x).style.display = "none"
	}
}

function closeProduct(theID) {
	document.getElementById("product"+theID).style.display = "none";
}
