<!--

  function makeNewWindow(address,title,l,h,param)
  {
    hauteur=Math.round((screen.availHeight-h)/2);
    largeur=Math.round((screen.availWidth-l)/2);
    window.open(address,title,"toolbar=0,location=0,directories=0,status=0, scrollbars=0,resizable=0,menubar=0,top="+hauteur+",left="+largeur+",width="+l+",height="+h);
  }
  
  function confirmBox(win, text, URL)
  {
    if (confirm(text)=="1")
    {
      win.location.href=URL;
    }
  }
  
-->

   