/* funct.js */

var infoShown=false;

function prodZoom(zoomDir) {
	setDisplay="block";
	if(zoomDir=="out") { setDisplay="none"; }
	document.getElementById("prod_zoom").style.display=setDisplay;
}

function showInfo() {
	if(!infoShown)
	{
		var useVis="visible";
		infoShown=true;
	} else {
		var useVis="hidden";
		infoShown=false;
	}

	document.getElementById("prod_block").style.visibility=useVis;
}