function zoomProductImage(productImage, width, height) {
    
	if (productImage) {
		window.open('/Ecommerce/zoom.aspx?image=' + productImage,'ZOOM','width=' + width + ',height=' + height + ',scrollbars=no,resize=yes');
    }
    return false;
}