<!-- hide

function openWindow(file,tx,ty) {
 myWindow= open(file, "newWindow", "width="+tx+",height="+ty+",menubar=no,resizable=no,scrollbars=no,status=no,toolbar=no");
 /*
 
 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
 */
}

// -->
