<!-- Fonctions Javascript generales. 
function openWindow(file,w,h,scroll,others)  
// Ouverture d'une open window
// ===========================
// file : nom du fichier
// w : largeur en pixels
// h : hauteur en pixels
// scroll : barres de défilement (yes/no)
// others : barre de status, etc...
{
   if (!scroll)
	scroll='yes';
   if (!h)
	h=580
   if (!w)
	w=800
   if (others)
	others=','+others
   else
	others=''

	l=(screen.width/2)-(w/2);

   window.open(file,"",'width='+w+',height='+h+',left='+l+',top=0,scrollbars='+scroll+others+',resizable=yes')
}
//-->

