function agrandir(img, largeur, hauteur)
{
  var page="grand/IMG_"+img+".JPG";
  ouvrir(page, largeur, hauteur);	
}

function ouvrir(page, largeur, hauteur)
{
  ttop=(screen.height-hauteur)/2;
  tleft=(screen.width-largeur)/2;
  POPUP = window.open("","","top="+ttop+",left="+tleft+",width="+largeur+",height="+hauteur+","+"menubar=no,scrollbars=no,statusbar=no"); 
  POPUP.document.write("<head><title>Honda Civic - www.TuningCenter.com</title>"); 
      POPUP.document.write("<script language=JavaScript>");
      POPUP.document.write("var message='';");
      POPUP.document.write("function clickIE() {if (document.all) {(message);return false;}}");
      POPUP.document.write("function clickNS(e) {if" );
      POPUP.document.write("(document.layers||(document.getElementById&&!document.all)) {");
      POPUP.document.write("if (e.which==2||e.which==3) {(message);return false;}}}");
      POPUP.document.write("if (document.layers)");
      POPUP.document.write("{document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}");
      POPUP.document.write("else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}");
      POPUP.document.write("</script>");
	POPUP.document.write("</head>");
	POPUP.document.write("<body MARGINWIDTH=0 MARGINHEIGHT=0><table style='position:absolute;top:0;left:0;' background='"+page+"' border=0 width='1024' height='768'><tr><td>&nbsp;</td></tr></body>"); 
	POPUP.document.close(); 
}
