function openWindowPleinEcr(filename, windowname) {

bredd = screen.width;
hojd = screen.height;

windowops = eval("'screenX=0,left=0,screenY=0,top=0, toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,fullscreen=yes,copyhistory=yes,width=" + bredd + ",height=" + hojd + "'");
window.open(filename, windowname, windowops);
}

function openWindow(filename, windowname, largeur, hauteur, coordonneeX, coordonneeY, ascenseur, retaillable, barreOutils, barreAdresse, barreEtat, barreMenu, repertoires, pleinEcran, historique, ecranX, ecranY) {

windowops = eval("'screenX=" + ecranX + ",left=" + coordonneeX + ",screenY=" + ecranX + ",top=" + coordonneeY + ", toolbar=" + barreOutils + ",location=" + barreAdresse + ",directories=" + repertoires + ",status=" + barreEtat + ",menubar=" + barreMenu + ",scrollbars=" + ascenseur + ",resizable=" + retaillable + ",fullscreen=" + pleinEcran + ",copyhistory=" + historique + ",width=" + largeur + ",height=" + hauteur + "'");
window.open(filename, windowname, windowops);
}

