function ecritpopup(fichier,titre,largeur,hauteur){
	
  largeur=eval(largeur)+4;
  hauteur=eval(hauteur)+6;   
  var top=(screen.height-hauteur)/2;
  var left=(screen.width-largeur)/2;
  var params = "top="+top+",left="+left+",width="+largeur+",height="+hauteur;
    
	w = window.open('','loading',params);
	w.document.write( "<html><head><title>"+titre+"</title>\n" );

	w.document.write( "</head><body leftmargin=0 topmargin=0 marginwidth=0 marginheight=0>" );
	w.document.write( "<table width='100%' height='100%' border='0' align='center' cellpadding='0' cellspacing='0'><tr>" );
	w.document.write( "<td align='center' valign='middle'>" );
	w.document.write( "<a href='javascript:window.close();'><img src='"+fichier+"' border=0 alt='"+titre+"'></a></td></tr></table>" );
	w.document.write( "</body></html>" );
	w.document.close();
}

