﻿function ShowHide(sTRID)
{
	if (sTRID.style.display=="")
	{
		sTRID.style.display="none";
	}
	else
	{
		sTRID.style.display="";
	}
}
function showProductImage(strID, imageName) {
    $("#" + strID).html("<img src=\"" + imageName + "\">");
}
function popup(strHref, strWidth, strHeight) {
    window.open(strHref, '_blank', 'width=' + strWidth + ',height=' + strHeight + ',status=no,toolbar=no,menubar=no,location=no,resizable=no,scrollbars=no '); return false;
}
