<!--
// In order to work correctly, the Web server from which the file is served must map the .js
//suffix to the MIME type application/x-javascript. The server must also report this MIME type
//to browser in the HTTP header associated with the file. If your Web server is not already
//configured to do so, this amounts to adding a simple .js to application/x-javascript mapping
//in your Web server's MIME type configuration file. -->


window.onerror=null


function teleload3(url1, url2, url3) {
  opener.parent.gauche.location.href= url1;
  opener.parent.milieu.location.href= url2;
  opener.parent.droite.location.href= url3;
}	

function load3(url1, url2, url3) {
  parent.gauche.location.href= url1;
  parent.milieu.location.href= url2;
  parent.droite.location.href= url3;
}


function teleload2(url4, url5) {
  opener.parent.deroulant.location.href= url4;
  opener.parent.page.location.href= url5;
}

function load2(url4, url5) {
  parent.deroulant.location.href= url4;
  parent.page.location.href= url5;
}

function load1(url6) {
  parent.haut.location.href= url6;
}

function teleload1(url6) {
  opener.parent.haut.location.href= url6;
}

function openWindow(page, titre, w, h, r, s) { 

       /* on utilise ici seulement les quatre options les plus utiles */
       /* w est la largeur de la fentre (nombre de pixels) */
       /* h est la hauteur de la fentre (nombre de pixels) */
       /* si r a la valeur "yes", la fentre pourra tre redimentione */
       /* si s  a la valeur "yes", la fentre aura des barres de dfilement */

       var options=("width="+w);
       var options=(options+",height="+h);
       var options=(options+",resizable="+r);
       var options=(options+",scrollbars="+s);
       myWin= open(page,titre,options);

}

function goBack(){ 
if (navigator.appName == "Netscape"){history.back();} 
if (navigator.appName == "Microsoft Internet Explorer"){top.history.back();} 
} 
       
       
       
