<!--

function openWindowF(theURL,winName,features) {
  window.open(theURL,winName,features);
}

function openWindowWH(theURL,winName,largeur,hauteur) {
  features='resizable=no,menubar=no,location=no,toolbar=no,status=no,scrollbars=no,resizable=no,directories=no,copyhistory=no,' + 'width='+largeur+',height='+hauteur;
  window.open(theURL,winName,features);
}

function openWindow(theURL,winName) {
  features='resizable=no,menubar=no,location=no,toolbar=no,status=no,scrollbars=no,resizable=no,directories=no,copyhistory=no,width=620,height=620';
  window.open(theURL,winName,features);
}
function openWindowForImage(theURL,winName) {
  features='menubar=no,location=no,toolbar=no,status=no,scrollbars=no,resizable=no,directories=no,copyhistory=no,width=620,height=620';
  window.open(theURL,winName,features);
}

function myPopup(titre, message) {
  wdow=open("","calculs","height=450,width=450","scrollbars=yes")
  wdow.document.write("<PRE>")
  wdow.document.writeln(titre)
  wdow.document.writeln(message)
  wdow.document.writeln("")
  return
}

//-->

