﻿// JScript File


function ShowHideMenuSub(MenuSubToShow)
{
    if (document.getElementById(MenuSubToShow).style.display=='block')
	    {document.getElementById(MenuSubToShow).style.display='none';}
    else
        {document.getElementById(MenuSubToShow).style.display='block';}
}

function ShowProductImage(ImageID,ImageSrc)
{
    document.getElementById(ImageID).setAttribute("src",ImageSrc);
}

function showImg(imgSrc, H, W, Caption){
	var newWindow = window.open('','newWindow','left=20,top=20,width=100,height=100,toolbar=0,resizable=0,location=0');
	newWindow.document.write("<title>"+ Caption +"</title>");
	newWindow.document.write("<img src='"+ imgSrc +"' height='"+ H +"' width='"+ W +"' onclick='window.close()' style='position:absolute;left:0;top:0'>");
	newWindow.resizeTo(W, H);
	newWindow.focus();
	newWindow.document.close();
}

