/*
for extra product pop-up info

*/

function ShowPop(id)
{
 document.getElementById(id).style.visibility = "visible";
}
function HidePop(id)
{
 document.getElementById(id).style.visibility = "hidden";
} 
