document.write("&nbsp;<br>&nbsp;<br>&nbsp;<br>");
markW = document.body.clientWidth - 20;       // pixels wide
markH = 40;       // pixels high
markX = 50;      // percent right

markRefresh = 50; // milliseconds

// set common object reference
if (!document.all) document.all = document;
if (!document.all.tm.style) document.all.tm.style = document.all.tm;

wMark = document.all.tm.style;
wMark.width = markW; wMark.height = markH;
navDOM = window.innerHeight; // Nav DOM flag
 
function setVals()
{
   barW = 0; // scrollbar compensation for PC Nav
   barH = 0;
   if (navDOM)
   {
      if (document.height > innerHeight)
         barW = 20;
      if (document.width > innerWidth)
         barH = 20;
   }
   else
   {
      innerWidth = document.body.clientWidth;
      innerHeight = document.body.clientHeight;
   }
   posX = ((innerWidth - markW)-barW) * (markX/100);
   posY = 0; // ((innerHeight - markH)-barH) * (markY/100);
}

function wRefresh()
{
   wMark.left = posX + (navDOM?pageXOffset:document.body.scrollLeft);
   wMark.top = posY + (navDOM?pageYOffset:document.body.scrollTop);
}

function markMe()
{
   setVals();
   window.onresize=setVals;
   markID = setInterval ("wRefresh()",markRefresh);
}

window.onload=markMe; // safety for Mac IE4.5

