
<!-- AFFICHAGE UNE SEULE FENETRE -->

function NewWindow(mypage, myname, w, h, scroll, resiz, tool, loca, stat, menu) {
var winl = (screen.width - w) / 5;
var wint = (screen.height - h) / 4;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable='+resiz+',toolbar='+tool+',location='+loca+',status='+stat+',menubar='+menu+''
win = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}



<!-- AFFICHAGE PLUSIEURS FENETRES - A utiliser quand lien vers page autre domaine -->

function MultiNewWindow(mypage, myname, w, h, scroll, resiz, tool, loca, stat, menu) {
var id = Math.round( Math.random() * 100 );	
var winl = (screen.width - w) / 5;
var wint = (screen.height - h) / 4;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable='+resiz+',toolbar='+tool+',location='+loca+',status='+stat+',menubar='+menu+''
win = window.open(mypage, myname+id, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}

