    <!--
    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);
				//orig:   var thisWin = open(this.src, 'windowName', 'width=' + this.width + ',height=' + this.height + str);
			  var thisWin = open('', 'windowName', 'width=' + this.width + ',height=' + this.height + str);
			  thisWin.document.writeln(
				'<html><head><title>' + productName + '</title></head>'
				+'<body bgcolor=white onLoad="self.focus()" leftmargin="0" topmargin="0">'
				+'<center><img src=' + this.src + '></center>'
				+'</body></html>')
				thisWin.document.close() //on purpose :-)
		  }

    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);
	    imgWidth = thumpImg.width;
    }

    function positionPop(imgPathName, imgName) {
			largeImageUrl = largeImagePath + imgName;
			document.imgProduct.src = imgPathName;
			imgWidth = document.imgProduct;
    }

    //-->