<!--
var ff=null;

function ouvre(fichier,w,h) {
var x = new Image() ; x.src=fichier /* pour bug (?) de IE5-mac */ 
ff=window.open(fichier,"pop","width="+w+",height="+h
	                 +",left=10,top=10,scrollbars=no") ;

var titre=fichier;
var k=titre.lastIndexOf('/',titre.length-1);
titre=titre.substring(k+1);

if (ff) {
ff.document.open(); // pas obligatoire mais toujours plus clean
ff.document.write('<head><title>' + titre + '<\/title><\/head>');
ff.document.write('<body background="'+ fichier + '" onBlur="top.close()"><\/body>');
ff.document.close();
         }
}


function onferme() {
if (ff && !ff.closed) {ff.close() ; ff=null}
} 


//-->