if(top!=self)
    {
    top.location=self.location;
    }

// 1k DHTML API
d=document;
l=(d.layers)?1:0;
op=navigator.userAgent.toLowerCase().indexOf('opera')!=-1;

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 sE(e){if(l)e.visibility='show';else e.style.visibility='visible';}
function hE(e){if(l)e.visibility='hide';else e.style.visibility='hidden';}
function sZ(e,z){if(l)e.zIndex=z;else e.style.zIndex=z;}
function sX(e,x){if(l)e.left=x;else if(op)e.style.pixelLeft=x;else e.style.left=x;}
function sY(e,y){if(l)e.top=y;else if(op)e.style.pixelTop=y;else e.style.top=y;}
function sW(e,w){if(l)e.clip.width=w;else if(op)e.style.pixelWidth=w;else e.style.width=w;}
function sH(e,h){if(l)e.clip.height=h;else if(op)e.style.pixelHeight=h;else e.style.height=h;}
function sC(e,t,r,b,x){if(l){X=e.clip;X.top=t;X.right=r;X.bottom=b;X.left=x;}else e.style.clip='rect('+t+' '+r+' '+b+' '+x+')';}
function wH(e,h){if(l){Y=e.document;Y.write(h);Y.close();}if(e.innerHTML)e.innerHTML=h;}


// 1k TOOLTIP EXT
d.write('<style type=\"text/css\">.tltp{ position:absolute; z-index:5; visibility:hidden; border:1px solid #D70324; padding:6px; background-color:#FFDF00; font:12px Verdana,Arial,sans-serif }</style>');
d.write('<div id=\"TOOLTIP_1K\" class=\"tltp\">&nbsp;</div>');
if(l)d.captureEvents(Event.MOUSEMOVE);
d.onmousemove=function(e){e=e||event;mX=((d.all||op)?e.clientX+d.body.scrollLeft+d.documentElement.scrollLeft:e.pageX)+15+(!l&&!op?'px':0);mY=((d.all||op)?e.clientY+d.body.scrollTop+d.documentElement.scrollTop:e.pageY)+15+(!l&&!op?'px':0);if(tltp&&tltp.v){sX(tltp,mX);sY(tltp,mY)}};
function T (text)
           {
            if(op||!tltp)
             return;
            if(text)
             {
             wH(tltp,text);
             tltp.v=true;
             sX(tltp,mX);
             sY(tltp,mY);
             setTimeout("if(tltp.v)sE(tltp);if(!T.follows)tltp.v=false",T.delay*1000);
             }
            else
             {
             tltp.v=false;hE(tltp);
             }
            };
T.init=function()
 {
 tltp=gE("TOOLTIP_1K")
 };
tltp=null;
T.follows=false; T.delay=.7;






