/* ParkeNet scripts      */
/* 2008, William R Parke */

 if (self != window.top)
  window.top.location.href = self.location.href;
 
 function deLite(id,clr,bgc)
 {
  // onmouseout de-highlights navigation cell 
  window.status = "";
  var obj = document.getElementById(id);
  if (obj)
  {
   if (null == clr)
    clr = "#06c";
   if (null == bgc)
    bgc = "#eee";
   obj.style.color = clr;
   obj.style.backgroundColor = bgc;
  }
 }

 function hiLite(id,clr,bgc)
 {
  // onmouseover highlights navigation cell
  var obj = document.getElementById(id);
  if (obj)
  {
   if (null == clr)
    clr = "#00f";
   if (null == bgc)
    bgc = "#ffd";
   obj.style.backgroundColor = bgc;
   obj.style.color = clr;
  }
  obj = document.getElementById(id+"a");
  if (obj) 
   window.status = obj.href;
 }
