    <!--
    var thumpImg = new Image();
    var thumpInt;
    var largeImagePath = '/images/products/large/'
		
		function popUpImage(){
			 var img = new Image();
			 img.onload = openImageWin;
			 img.src = largeImageUrl;
		}
		
		 function openImageWin () {
			var str = "";
			if (parseInt(navigator.appVersion) > 3)
				str += ",left=" + (screen.width - this.width) / 2 + ",top=" + parseInt((screen.height - this.height) / 2);
            var strTemp = largeImageUrl.substring(largeImageUrl.lastIndexOf("/") + 1);
            var gImgGuid = strTemp.substring(0, strTemp.lastIndexOf("."));
		    ImageWin = window.open('/products/PopUpImage.aspx?pid=' + intProductID + '&iguid=' + gImgGuid, 'PopUpLargeImage', 'width=' + this.width + ',height=' + (this.height + 30 + 20) + str);
		  }

    function checkImg(imgName) {
	    if (thumpImg.readyState == "complete" || thumpImg.readyState == 4) { 
		    document.imgProduct.src = imgName
		    clearInterval(thumpInt);
	    }
    }

    function hidePop() {
	    if (document.all) {
		    clearInterval(thumpInt);
	    }
    }

    function showPop(imgName) {
	    thumpImg.src = imgName;
	    thumpInt = window.setInterval("checkImg('" + imgName + "')",200);
    }

    function positionPop(imgPathName, imgName, iWidth, iHeight) {
			largeImageUrl = imgName;
			document.imgProduct.src = imgPathName;
			document.imgProduct.style.width = iWidth;
			document.imgProduct.style.height = iHeight;
    }

   	function showddSubMenu(subMenuId)
	{
		var subMenu = document.getElementById('ddSubMenu' + subMenuId);
		if (subMenu != null) {
				subMenu.style.display = "block";
		}
	}
	function hideAllddSubMenus()
	{
		var divs = document.getElementsByTagName("div")
		for(var indx = 0; indx < divs.length; indx++)
		{
			if (divs[indx].id.indexOf("ddSubMenu") > -1)
			{
				var subMenu = divs[indx];
				subMenu.style.display = "none";
			}
		}
	}
	
    function writeSWFtag (strSWFFile, intWidth, intHeight) {
        document.write('<object type="application/x-shockwave-flash" data="' + strSWFFile + '" ');
        document.write('width="' + intWidth + '" height="' + intHeight + '">');
        document.write('<param name="movie" value="' + strSWFFile + '"></object>');
    }

    //-->