window.onerror=null;
moving=0;

function showMenu() {
  if (navigator.appVersion.substring(0,1)=='4')  {
    if (navigator.appName=='Netscape')  {
      menu=document.layers['menu'];
      if (menu.visibility=="hide")  {
	w=document.Screen.width;
	menu.visibility="show";
	temp=w;
	temp -= menu.clip.right;
	start = 100-menu.clip.right ;
        menu.moveTo(w,start);
      }
      if (temp < w)   {
	w -= 20;
	start += 20
	menu.moveTo(w,start);
	setTimeout("showMenu()",5);
      }
    }
    else {
      if (document.all) {
        if (!moving)  {
	    w=document.Screen.width;
	    temp=w;
	    temp -= 350;
	    start = -250 ;
	    document.all["iemenu"].style.top = start;
	    document.all["iemenu"].style.left = w;
	    document.all["iemenu"].style.visibility = 'visible';
	    moving=1;
        }
        if (temp < w)   {
	  w -= 20;
          start += 20
	  document.all["iemenu"].style.top = start;
	  document.all["iemenu"].style.left = w;
          setTimeout("showMenu()",5);
        }
      }
    }
  }
}

function hide() {
	if (document.all)
	    document.all["iemenu"].style.visibility = 'hidden';
	    moving=0;
}
