function openImage(url,titreimage,largeur,heuteur){
	myWindow = window.open("", "newwin", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width="+largeur+",height="+heuteur+",left=50,top=50");
	myWindow.document.write("<HTML><HEAD>");
	myWindow.document.write("<TITLE>"+titreimage+"</TITLE>");
	myWindow.document.write("<link rel=\"stylesheet\" href=\"./css/css.css\" />\n");
	myWindow.document.write("</HEAD><BODY BGCOLOR=#FFFFFF>\n");
	myWindow.document.write("<TABLE width=100% height=100% cellspacing=0 cellpadding=0 border=0>");
	myWindow.document.write("<TR><TD align=center vailgn=middle>");
	myWindow.document.write("<IMG src="+url+" border='0'>");
	myWindow.document.write("</TD></TR>");
	myWindow.document.write("</TABLE>");
	myWindow.document.write("</BODY></HTML>");
	myWindow.document.close();
}

