<!-- Debut script

function openWindow(file,px,py,tx,ty,attribu) {
 /*
 
 les arguments:

 file: page htm a afficher
 px: position horizontale
 py: position verticale
 tx: taille horizontale
 ty: taille verticale
 attribut: voir ci dessous

 les differents attributs:
 directories yes|no
 height number of pixels
 location yes|no
 menubar yes|no
 resizable yes|no
 scrollbars yes|no
 status yes|no
 toolbar yes|no
 width number of pixels
 */

 myWindow= open(file, "newWindow", "top="+px+",left="+py+",width="+tx+",height="+ty+","+attribu);

}

//  Fin script -->