/////  fonctions Javascript  /////

var status = 0;
function deploy(smi) {
 if(status==1) {
  //alert(smi+".status=1");
  document.getElementById(smi).style.display="none";
  status = 0;
  exit;
 }
 else {
  //alert(smi+".status=0");
  document.getElementById(smi).style.display="block";
  status = 1;
  exit;
 }
}

function dim_page(chemin, ww, hh) {
    //alert('PASS');
    var Ecran = chemin + ".php";
    open(Ecran, "Ecran", "toolbar=no, location=no, directories=no, status=no, scrollbars=no, resizable=yes, copyhistory=no, screenY=0, screenX=0, HEIGHT=" + hh + ",WIDTH=" + ww + ",");
}

function ajuster() {
    self.moveTo(0,0); // absolute positioning
    var ww = 618;
    var wh = 492;
    window.resizeTo(ww, wh);
}


