/* Fonction Zoom_Image qui apelle le fichier zoom_image.asp */
<!--
function zoom_image(ImageFile, SizeX, SizeY)
{
 PosX = (window.screen.width-SizeX)/2;
 PosY = (window.screen.height-SizeY)/2;
 window.open("zoom_image.asp?image=" + ImageFile + "&sizex=" + SizeX + "&sizey=" + SizeY, "zoom_image", "toolbar=no, location=no, directories=no, status=no, scrollbars=no, resizable=yes, copyhistory=no, width=" + SizeX + ", height=" + SizeY + ", left=" + PosX + ", top=" +  PosY);
}
//-->