function Zoom(img) 
{ 
var titre="Zoom"; 
var w=open("",'image','width=400, height=400, toolbar=no,scrollbars=yes,resizable=no'); 
w.document.write("<HTML><HEAD><TITLE>"+titre+"</TITLE></HEAD>"); 
w.document.write("<SCRIPT language=javascript>function checksize() { if (document.images[3].complete) { window.resizeTo(document.images[3].width+30,document.images[3].height+60); window.focus();} else { setTimeout('checksize()',250) } }</"+"SCRIPT>"); 
w.document.write("<BODY onload='checksize()' leftMargin=0 topMargin=0 marginwidth=0 marginheight=0>");
w.document.write("<TABLE width='100%' border='0' cellspacing='0' cellpadding='0'>");
w.document.write("<tr height='30'><td width='50%' background='/en/Bt/popup_milieu.gif'><img src='/en/Bt/popup_gauche.gif' width='78' height='30'></td><td width='50%' valign='top' background='/en/Bt/popup_milieu.gif' align='right'><a href='#' OnClick='window.print()'><img src='/en/Bt/bt_print_gris.gif' width='80' height='20' border='0' alt='Print'></a><a href='#' OnClick='window.close()'><img src='/en/Bt/bt_fermer.gif' width='20' height='20' border='0' alt='Close'></a>&nbsp;</td></tr>");
w.document.write("<TR><TD colspan='2' valign='middle' align='center'><IMG src='"+img+"' border=0 alt=''>"); 
w.document.write("</TD></TR></TABLE>");
w.document.write("</BODY></HTML>"); 
w.document.close();
}

function ZoomFlash(img, largeur, hauteur)
{ 
var titre="Zoom"; 
var hauteurfen = hauteur+30;
var largeurfen = largeur+30;
var w=open("",'flash','width='+largeurfen+', height='+hauteurfen+', toolbar=no,scrollbars=yes,resizable=no'); 
w.document.write("<HTML><HEAD><TITLE>"+titre+"</TITLE></HEAD>"); 
w.document.write("<BODY leftMargin=0 topMargin=0 marginwidth=0 marginheight=0>");
w.document.write("<TABLE width='100%' border='0' cellspacing='0' cellpadding='0'>");
w.document.write("<tr height='30'><td width='50%' background='/en/Bt/popup_milieu.gif'><img src='/en/Bt/popup_gauche.gif' width='78' height='30'></td><td width='50%' valign='top' background='/en/Bt/popup_milieu.gif' align='right'><a href='#' OnClick='window.close()'><img src='/en/Bt/bt_fermer.gif' width='20' height='20' border='0' alt='Close'></a>&nbsp;</td></tr>");
w.document.write("<TR><TD colspan='2' valign='middle' align='center'><object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0' width='"+largeur+"' height='"+hauteur+"'>");
w.document.write("<param name='movie' value='"+img+"'>");
w.document.write("<param name='quality' value='high'>");
w.document.write("<embed src='"+img+"' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='270' height='275'>");
w.document.write("</embed></object>"); 
w.document.write("</TD></TR></TABLE>");
w.document.write("</BODY></HTML>"); 
w.document.close();
} 

