function startList() 
{
  if (document.all&&document.getElementById) 
  {
    navRoot = document.getElementById("nav");
    if(navRoot) 
    {          
      for (i=0; i<navRoot.childNodes.length; i++) 
      {
        node = navRoot.childNodes[i];
        if (node.nodeName=="LI") 
        {
          node.onmouseover=function() { this.className+=" over"; }
          node.onmouseout=function() { this.className=this.className.replace(" over", ""); }
        }
      }
    }
    
    iblRoot = document.getElementById("ibl");
    if(iblRoot) 
    {   
      for (i=0; i<iblRoot.childNodes.length; i++) 
      {        
        node = iblRoot.childNodes[i];
        if (node.nodeName=="DIV") 
        {
          if(node.className.substring(0,9) == "linkitem") 
          {           
            node.onmouseover=function() { this.className+=" hover"; }
            node.onmouseout=function() { this.className=this.className.replace(" hover", ""); }
          }
        }
      }
    }        
  }
}
window.onload=startList;
    
function addflexmedbookmark()
{ window.external.AddFavorite("http://www.flexmedical.com","FlexMedical - Medical Office Automation") }

function addocerisbookmark()
{ window.external.AddFavorite("http://www.oceris.com","OCERIS, Inc.") }

function EmailPage(pageurl) 
{ 
  var windowOptions = "width=525, height=550, scrollbar=no, scrolling=no, menubar=no, top=0, left=0, screenX=0, screenY=0";
  var MyNewWindow = window.open(pageurl,"referral", windowOptions);
  if (MyNewWindow.focus) { MyNewWindow.focus(); }
}