<!--
var isNav, isIE
var col1 = " "
var styleObj = " "

if (parseInt(navigator.appVersion)>=4)
{
   if (navigator.appName=="Netscape") isNav=true;
   else {
      isIE=true;
      col1="all.";
      styleObj=".style";
   }         
}  

function getObject(obj)
{
  var theObj
  if (typeof obj == "string")
   theObj = eval("document."+col1+obj+styleObj);
  else
    theObj = obj;

  return(theObj);
}

function MM_callJS(jsStr) { //v2.0
  return eval(jsStr);
}

function showit( win )
{
  var obj = getObject( win );
  obj.visibility="visible";
}

function hideit( win )
{
  var obj = getObject( win );
  obj.visibility="hidden";
}

function relocatethem()
{
  for(i=1;i<=9;i++)
  {
     win='win0'+i-1;
     x = 110;
     y = -18 + i * 65;
 
     var obj= getObject(win);
    
     if (isNav)
       obj.moveTo(x,y);
     else
     {
        obj.pixelLeft = x;
        obj.pixelTop  = y;
     }  
  } 
}

//-->
