var isNav4, isIE4;
if (parseInt(navigator.appVersion.charAt(0)) >= 4) {
isNav4 = (navigator.appName == "Netscape") ? 1 : 0;
isIE4 = (navigator.appName.indexOf("Microsoft") != -1) ? 1 : 0;
}

function PopupImage(img) { 

  // Compatible IE5+ / NN6+ / Mozilla

if (isNav4) {
  oFenetre = window.open('','Image','width=1000,height=1000,top=50,left=50,toolbar=0,location=0,directories=0,status=yes,scrollbars=0,resizable=yes,copyhistory=0,menuBar=0');
}

if (isIE4) {
  oFenetre = window.open('','Image','width=100,height=100,top=50,left=50,toolbar=0,location=0,directories=0,status=yes,scrollbars=0,resizable=yes,copyhistory=0,menuBar=0');
}


  oFenetre.document.write("<html><head><title>DREVET and Co</title><meta http-equiv=imagetoolbar content=no></head>"); 

  oFenetre.document.write("<script type=\"text/javascript\">function AjustePopUp() { if (document.images[0].complete) { window.resizeTo(document.images[0].width+10,document.images[0].height+54); window.focus();} else { setTimeout('AjustePopUp()',1000) } }</"+"script>");

  oFenetre.document.write("<body onload='AjustePopUp()' onblur='window.close()' onclick='window.close()' leftMargin=0 topMargin=0 marginwidth=0 marginheight=0 bgcolor=#000000>"); 

  oFenetre.document.write("<table width='100%' border='0' cellspacing='0' cellpadding='0' height='100%'><tr><td valign='middle' align='center'>");
 
  oFenetre.document.write("<img src='"+img+"' border='0'>");
  oFenetre.document.write("</td></tr></table></body></html>"); 
  oFenetre.document.close(); 

} 

