function ShowAlternativeImage(imageName, clientID)    {
    
    document.getElementById(clientID).src = '/images/ecommerce/standard/' + imageName;
    //document['mainImage'].src = '/images/ecommerce/mini/' + imageName;
}

function zoomProductImage(productImage) {
    
	if (productImage) {
		window.open('/Ecommerce/zoom.aspx?image=' + productImage,'ZOOM','width=700,height=700,scrollbars=no,resize=no');
    }
    
    //[RK] 21/12/06 - triggered from ImageButton so MUST return false
    return false;
}

function fitPic() {
	if (window.innerWidth){
		iWidth = window.innerWidth;
		iHeight = window.innerHeight;
	}else{
		iWidth = document.body.clientWidth;
		iHeight =document.body.clientHeight;
	}
	
	iWidth = document.images[0].width - iWidth;
	iHeight = document.images[0].height - iHeight;
	window.resizeBy(iWidth, iHeight);
}


function demoZoom()	{

    window.open('/zoom.asp','ZOOM','width=580,height=400,scrollbars=no,resize=yes');
}

function zoomClient(clientID, section)   {
    //alert(clientID + ' ' + section);
    window.open('/clients/zoom.aspx?id=' + clientID + '&section=' + section,'ZOOM','width=580,height=420,scrollbars=no,resize=yes');
}

function printClient(clientID)   {
    //alert(clientID + ' ' + section);
    window.open('/clients/print.aspx?id=' + clientID,'PRINT','width=580,height=420,scrollbars=yes,resize=yes');
}
