<!--
  
  //MENU INITIALIZATION
  var menu = new FSMenu('menu', false, 'display', 'block', 'none');
  menu.showDelay = 0;
  menu.switchDelay = 0;
  menu.hideDelay = 500;
  menu.cssLitClass = 'highlighted';
  
  
  var d = document;
  
    
  function openWin (iFrameID) {
    win = d.getElementById('newWindow');
        
    win.style.width = Math.ceil(windowWidth / 2.5);
    win.style.height = Math.ceil(windowWidth / 2.5);
    
    win.style.left = Math.ceil(windowWidth / 2) - Math.ceil(parseInt(win.style.width) / 2);
    win.style.top = Math.ceil(windowHeight / 2) - Math.ceil(parseInt(win.style.height) / 2);
    
    win.style.visibility = "visible";
    
    frame = d.getElementById('newWindowFrame');
    frame.style.width = parseInt(win.style.width) - 20;
    frame.style.height = parseInt(win.style.height) - 35;
    frame.style.backgroundColor = "#ffffff";
    frame.src = iFrameID;
    frame.style.display = "inline";
    
    //setWipeData("center", );
  }
  
  function closeWin () {
    d.getElementById('newWindow').style.visibility = "hidden";
    d.getElementById('newWindowFrame').style.display = "none";
  }
  

//-------------------------------------------
// SHOWS COMMENTS 

  var oldLinkID;
  var lastShowing;
  
  function showComment(id, linkID) {
    
    if (lastShowing == id && d.getElementById(id).style.display == "inline")
      d.getElementById(id).style.display = "none";
    else if (lastShowing == id && d.getElementById(id).style.display == "none")
      d.getElementById(id).style.display = "inline";
    else if (lastShowing != id) {
      if (typeof lastShowing != "undefined")
        d.getElementById(lastShowing).style.display = "none";
      d.getElementById(id).style.display = "inline";
    }
      
    lastShowing = id;
    oldLinkID = linkID;
        
  }
  
//"highlights" current page for the user
//changes the className
//accepts a className as arg

  function setNav(clsName) {
          
    b = document.getElementsByTagName("body").item(0);
    aTags = b.getElementsByTagName("a");
    
    for (var i = 0; i < aTags.length; i++) {
      if (window.location.href == aTags.item(i).href)
        aTags.item(i).className = clsName;
    }
  }
  
  
//highlights issue BG on mouseover
  function highlightIssue (obj, c) {
    obj.style.cursor = "pointer";
    obj.style.backgroundColor = c;
  }
  
  
  
    
//-->
