// JavaScript Document

var hauteur=screen.availHeight;
var largeur=screen.availWidth;
window.moveTo(0,0);
window.resizeTo(largeur,hauteur);


function ouvrir(l,h,url) {
hauteur=Math.round((screen.availHeight-h)/2);
largeur=Math.round((screen.availWidth-l)/2);
window.open(url, "site", "toolbar=0,location=0,directories=0,status=0, scrollbars=0,resizable=0,menubar=0,top="+hauteur+",left="+largeur+",width="+l+",height="+h);
}

function MM_openBrWindow(theURL,winName,features) { 
  window.open(theURL,winName,features);
}