function AfficheMenu(Nom,Position)
{
   stdBrowser = (document.getElementById) ? true : false
   
   if (stdBrowser == true) {
      menuObj = document.getElementById(Nom).style
      menuObj.top = Position + "px"
      }

   else {
      }
}