function copyrightOpen()
{  var w = window.open("Copyright.shtml","copyright","width=600,height=500,status=no,resizable=no,scrollbars=yes");
   return w;
}

function LeftNavOver(which)
{  var element = parent.document.getElementById(which);
   if (element)
   {  element.style.backgroundColor = "#ffffff";
      element.style.color = "#666666";
   }
}

function LeftNavOut(which, context)
{  var element = parent.document.getElementById(which);
   if (element)
   {  element.style.color = "#ffffff";
      if (!(context))
         element.style.backgroundColor = "#ffcc00";
   }
}
