var nowVis="nuttin";

function isVis(firstProd){
	document.getElementById(firstProd).style.visibility="visible";
	nowVis=firstProd;
}

function showProduct(prodName){
	document.getElementById(nowVis).style.visibility="hidden";
	document.getElementById(prodName).style.visibility="visible";
	nowVis=prodName;
}
