function js_libafuse_fct_1_0__PopupImage(img,myTitre) {
	/* Popup redimensionnée pour les images */
	// src :  http://www.toutjavascript.com
	w=open("",'image','width=400,height=400,toolbar=no,scrollbars=no,resizable=yes');	
	w.document.write("<HTML><HEAD><TITLE>"+myTitre+"</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='"+img+"' border=0>");
	w.document.write("");
	w.document.write("</BODY></HTML>");
	w.document.close();
} // end fct

/* --------------------------------------------------------------------------------------------- */

function js_libafuse_fct_1_0__PopupHTML(myText,myWidth,myHeight,myTitre) {
	/* Popup redimensionnée pour les Textes HTML - <webmaster@atlantique.be> */
	myHeader = '<link href="../moietac_2_1.css" rel="stylesheet" rev="stylesheet" type="text/css">';
	w=open("",'','width='+myWidth+',height='+myHeight+',toolbar=no,scrollbars=no,resizable=yes,left=100,top=100');
	w.document.write("<HTML><HEAD>"+myHeader+"<TITLE>"+myTitre+"</TITLE></HEAD>");
	w.document.write("<BODY leftMargin='2' topMargin='2' marginwidth='2' marginheight='2'>");
	w.document.write(myText);
	w.document.write("");
	w.document.write("</BODY></HTML>");
	w.document.close();
} // end fct

/* --------------------------------------------------------------------------------------------- */
