     function movepanel()
     {
     
     d=document;
     l=(d.layers)?1:0;
     op=navigator.userAgent.toLowerCase().indexOf('opera')!=-1;
     ie=(d.all)?1:0;
     

     Panel = gE("panel");

     
       thescroll = getscroll();
       if (thescroll > 200) thescroll = thescroll - 250; else thescroll=-50;
       Panel.style.position="relative";
       sY(Panel, thescroll);
     }


function gE(e,f)
  {
  if(l)
    {
    f=(f)?f:self;
    var V=f.document.layers;
    if(V[e])return V[e];
    for(var W=0;W<V.length;)t=gE(e,V[W++]);
    return t;
    }
  if(d.all)return d.all[e];
  return d.getElementById(e);
  }

function sY(e,y)
  {
  if(l)e.top=y;
  else if(op)e.style.pixelTop=y;
  else e.style.top=y+'px';
  }

function getscroll()
{
  var y;
  if (self.pageYOffset) // all except Explorer
    {y = self.pageYOffset;}
  else if (document.documentElement && document.documentElement.scrollTop)
	// Explorer 6 Strict
    {y = document.documentElement.scrollTop;}
  else if (document.body) // all other Explorers
    {y = document.body.scrollTop;}
  return y;
}