
// Popup with a image and a description
	function popUpImageDesc(app,img, titre, description) {
        oFenetre = window.open('','Image','width=400,height=400,toolbar=no,scrollbars=no,resizable=no');
        oFenetre.document.write("<html><head><title>"+titre+"</title>");
        oFenetre.document.write("<link rel=\"StyleSheet\" href=\"/"+app+"/framework/skins/imedorg/css/main.css\" type=\"text/css\" media=\"screen\"></head>");
        oFenetre.document.write("<script type=\"text/javascript\">function twAjustePopUp() { if (document.images[0].complete) { window.resizeTo(document.images[0].width+32,document.images[0].height+80); window.focus();} else { setTimeout('twAjustePopUp()',1000) } }</"+"script>");
        oFenetre.document.write("<body onload='twAjustePopUp()'  leftMargin=0 topMargin=0 marginwidth=0 marginheight=0>");
        /*onblur='window.close()' onclick='window.close()'*/
        oFenetre.document.write("<table width='100%' border='0' cellspacing='0' cellpadding='0' height='100%'><tr><td valign='middle' align='center'>");
        oFenetre.document.write("<img src='"+img+"' border='0' alt='"+titre+"' title='"+titre+"'>");
        oFenetre.document.write("</td></tr><tr><td valign='middle' align='center'>");
        oFenetre.document.write(description);
        oFenetre.document.write("</td></tr></table></body></html>");
        oFenetre.document.close();
      }     
