function PopupImage(img, ImgTitle) { 
  // Compatible IE5+ / NN6+ / Mozilla
  var oFenetre = window.open('','Image','width=400,height=400,toolbar=no,scrollbars=no,resizable=yes');
  oFenetre.document.write("<HTML>"); 
  oFenetre.document.write("<HEAD>"); 
  oFenetre.document.write("<link rel='stylesheet' href='css/popup.css' type='text/css'>");
  
  oFenetre.document.write("</HEAD>"); 
  oFenetre.document.write("<BODY onload='window.resizeTo(document.images[0].width+50,document.images[0].height+140);'>"); 
 	oFenetre.document.write("<table border='0' width='100%' height='40'><tr><td valign='middle' align='left'><div class='titrePopup'>");
  oFenetre.document.write(ImgTitle + "</div></td></tr></table><br>")

  oFenetre.document.write("<img src='"+img+"' border='0'>");
  oFenetre.document.write("<br><div align='center'><a href='javascript:close();'><img src='imgs/francais/boutons/fermer_fenetre.gif'  alt='fermer_fenetre' border='0' style='cursor:hand'></a></div>");
  oFenetre.document.write("</td></tr></table>");
  oFenetre.document.write("</BODY></HTML>");
  oFenetre.document.close(); 
}
var myPopUpWin=0;
function winUpWindow(URLStr, left, top, width, height)
{
  if(myPopUpWin)
  {
	if(!myPopUpWin.closed) myPopUpWin.close();
  }
  myPopUpWin = open(URLStr, 'myPopUpWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}
function popUpComparateur(ProductClassId){	
	var left = 50;
	var top = 50;
	var width = 750;
	var height = 550;
	var URLStr = "CompTech.asp?AfficherComp.x=1&ProductClassId=" + ProductClassId
	winUpWindow(URLStr, left, top, width, height);
}
function PopupAutresVues(ProductId){	
	var left = 50;
	var top = 50;
	var width = 750;
	var height = 550;
	var URLStr = "ProdExtPages.asp?ProductId=" + ProductId
	winUpWindow(URLStr, left, top, width, height);
}
