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("		<title>Zoom sur : " + ImgTitle + "</title>");
  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[1].width+50,document.images[1].height+100);'>"); 
	oFenetre.document.write("		<table width='100%' height='100%' cellspacing='0'>");
	oFenetre.document.write("			<tr>");
	oFenetre.document.write("				<td id='head'>");
	oFenetre.document.write("					<img src='/imgs/common/puce_zoom.gif' alt='>' align='absmiddle'>" + ImgTitle);
	oFenetre.document.write("				</td>");
	oFenetre.document.write("			</tr>");
	oFenetre.document.write("			<tr>");
	oFenetre.document.write("				<td align='center' valign='middle' height='100%'>");
	oFenetre.document.write("					<a href='javascript: close();' title='Cliquez pour fermer la fenêtre'><img src='"+img+"' alt='Cliquez pour fermer la fenêtre' />");
	oFenetre.document.write("				</td>");
	oFenetre.document.write("			</tr>");
	oFenetre.document.write("		</table>");
  oFenetre.document.write("	</body>");
  oFenetre.document.write("</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?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);
}
function PopupPdr(ProductId){	
	var left = 50;
	var top = 50;
	var width = 900;
	var height = 650;
	var URLStr = "ProdPdrShow.asp?ProductId="+ ProductId
	winUpWindow(URLStr, left, top, width, height);
}
