

var trombo=null;



function toile_popup(nom,largeur,hauteur,titre)	{


lplus=20;
hplus=40;

limage=eval(largeur);
himage=eval(hauteur);

lpage=limage + lplus;
hpage=himage + hplus;


		if (!trombo || trombo.closed) 		{
		


trombo=window.open('','','width='+lpage+',height='+hpage+',toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=yes');
trombo.document.write('<HTML><HEAD><TITLE>'+titre+'</TITLE></HEAD><BODY bgcolor=#000000><img src='+nom+' alt='+titre+' width='+largeur+' height='+hauteur+'><br><center><font face=arial size=2 color=#808080><b>'+titre+'</b></font></center></body></html>');
			trombo.focus();
			

			
						
		} else {
			trombo.window.close();
trombo=window.open('','','width='+lpage+',height='+hpage+',toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=yes');
trombo.document.write('<HTML><HEAD><TITLE>'+titre+'</TITLE></HEAD><BODY bgcolor=#000000><img src='+nom+' alt='+titre+'width='+largeur+' height='+hauteur+'><br><center><font face=arial size=2 color=#808080><b>'+titre+'</b></font></center></body></html>');				
			trombo.focus();
			
		

		}
	}

