//** fonctions javascript spéciales pour  lisiere
//** Created: 3 Nov 08'

function ouvreFenetre(URL, large, haut) {
       var day = new Date();
       var id = day.getTime();
       var left = Math.floor( (screen.width - large) / 2);
       var top = Math.floor( (screen.height - haut) / 2);
       var str = "page" + id + " = window.open('" + URL + "', '" + id +"','toolbar=0,scrollbars=1,location=0,status=0,menubar=0,resizable=1,directories=0,width="+ large + ",height=" + haut + ",left=" + left + ",top=" + top +"');";
       eval(str);
       if (window.focus) {eval("page"+id+".focus();");}
}
