// JavaScript Document
function showProduct(prodID){
	childElements = document.getElementById("productholder").childNodes;
	for(i=0; i< childElements.length; i++){
		if (childElements[i].tagName == 'DIV') {
			if (childElements[i].id==prodID){
				childElements[i].style.display="block";
			}else{
				childElements[i].style.display="none";
			}
		}
	}
}