function popup(page,largeur,hauteur) {
	if (largeur == null )
	 largeur = 640;
	if (hauteur == null )
	 hauteur = 480;
  window.open(page,"","top=100,left=100,width="+largeur+",height="+hauteur+",scrollbars=yes,resizable=yes");
}
 
function popupG(page,largeur,hauteur) {
	if (largeur == null )
	 largeur = 640;
	if (hauteur == null )
	 hauteur = 480;
titre="Popup Image";
w=open("","image","width=400,height=400,toolbar=no,scrollbars=no'"); 
w.document.write("<HTML><HEAD><TITLE>"+titre+"</TITLE></HEAD>");
w.document.write("<SCRIPT language=javascript>function checksize() { if (document.images[0].complete) { window.resizeTo(document.images[0].width+12,document.images[0].height+30); window.focus();} else { setTimeout('check()',250) } }</"+"SCRIPT>");
w.document.write("<BODY onload='checksize()' leftMargin=0 topMargin=0 marginwidth=0 marginheight=0><IMG src='"+page+"' border=0>");
w.document.write("");
w.document.write("</BODY></HTML>");
w.document.close();

}

function Astuce(msg){
	
	 document.getElementById('astuce').innerHTML = msg ;

}