


function popup(prodID,image) {
	//document.getElementById('Large_Image'+prodID).style.zIndex = "100";
	//document.getElementById('Large_Image'+prodID).style.display = "";
		document.getElementById('Large_Image'+prodID).style.visibility = "visible";
	//document.getElementById('body').style.filter = "alpha(opacity:50)";
	//document.getElementById('body').style.backgroundColor = "gray";
	//alert(image);
	document.getElementById('image'+prodID).innerHTML = "<img src='./product_img/" + image+ "'/>";
	
}

function closePopup(prodID) {
	//document.getElementById('Large_Image'+prodID).style.zIndex = "-1";
	//document.getElementById('Large_Image'+prodID).style.display = "none";
	document.getElementById('Large_Image'+prodID).style.visibility = "hidden";
	//document.getElementById('body').style.filter = "alpha(opacity:100)";
	/*document.getElementById('body').style.backgroundColor = "white";*/

}
