<!--
    NS4 = (document.layers);
    IE4 = (document.all);

    scaleWidth = true;
    scaleHeight = true;

    if (NS4) window.onload = setResize;

    function setResize(){
        setTimeout("window.onresize=reDo;",500);
    }

    function reDo(){
        window.location.reload()
    }

    if (IE4) window.onresize = reDoIE;

    function reDoIE(){
        //imBG.width = document.body.clientWidth;
        //imBG.height = document.body.clientHeight;
        //document.images['linespace'].height = document.body.clientHeight;
        window.location.reload()
    }

    function makeIm(nomImage,intDiff) {
      winWid = (NS4) ? innerWidth : document.body.clientWidth;
      winHgt = (NS4) ? innerHeight : document.body.clientHeight;
      document.images[nomImage].height = winHgt - intDiff;
    }
function tierTip(objMenu)
{
   if (objMenu.style.display == "none")
   {
       objMenu.style.display = "";
   }
   else
   {
       objMenu.style.display = "none";
   }
}

//-->
