	<!-- 
	function enlargeImage(productName,productImageURL) {
		
		//var windowHeight = window.innerHeight;
		var windowHeight;
		 
		// the more standards compliant browsers (mozilla/netscape/opera/IE7) use window.innerWidth and window.innerHeight
		if (typeof window.innerWidth != 'undefined') {
		  windowHeight = window.innerHeight;
		}
		 
		// IE6 in standards compliant mode (i.e. with a valid doctype as the first line in the document)
		else if (typeof window.innerWidth == 'undefined') {
		   windowHeight = document.documentElement.clientHeight;
		}

		//alert(document.documentElement.clientHeight);
		document.getElementById('overlayLogin').style.display = 'none'
		document.getElementById('overlayMessage').style.maxHeight = (windowHeight-55)+'px';
		document.getElementById('overlayContainer').style.display = '';
		document.getElementById('overlayMessageHTML').style.display = '';
		document.getElementById('overlayMessageHTML').innerHTML = '<h4>'+productName+'</h4><img src="/images/products/full-'+productImageURL+'" title="Click to Close Image" style="cursor: pointer; margin: 10px auto;" onclick="overlayClose();"/>';
		
	}
	//-->
