<!--

window.location.replace("/");

ie4 = ((navigator.appname == "microsoft internet explorer") && (parseint(navigator.appversion) >= 4 ))
ns4 = ((navigator.appname == "netscape") && (parseint(navigator.appversion) >= 4 ))

if (ns4) {
    layerref="document.layers";
    styleref="";
} else {
    layerref="document.all";
    styleref=".style";
}       

function affichecalque(calque)
{
  eval(layerref + '["' + calque +'"]' + styleref + '.visibility = "visible"');
}

function cachecalque(calque)
{
  eval(layerref + '["' + calque +'"]' + styleref + '.visibility = "hidden"');
}
  function OpenPopup(url, namee, w, h){
var szParams = "toolbar=no,,width=" + w + ",height=" + h + ",scrollbars=no,resize=no,status=no,left=0,top=0";
nam=namee;
win = window.open(url,nam, szParams);
win.focus();
}
-->