/* Copyright ©2007 DiGGr.  All rights reserved.

   Javascript to modify stylesheet for nav bar
*/
function GetIFrameDoc(sID)
  {
  var oDoc = null;

  // W3C compliant (Mozilla)?
  if (document.getElementById(sID).contentDocument)
    oDoc = document.getElementById(sID).contentDocument;
  else
    oDoc = document.frames[sID].document;  /* more IE bugs */

  return oDoc;
  }

function SetNav(s)
  {
  var o = GetIFrameDoc("naviframe").getElementById(s).style;

  o.color = "#DFFFDF";
  o.background = "#003300";
//  o.border = "1px dashed #666666";
  }
