function r_on(i) {
  if (document.images) { 
    if (document[i].src.indexOf("down") < 0) {
      document[i].src = "../images/" + i + "_over.gif"; 
    }
  }
}

function r_off(i) {
  if (document.images) { 
    if (document[i].src.indexOf("down") < 0) {
      document[i].src = "../images/" + i + ".gif"; 
    }
  }
}

function writeDate() {
  var today = new Date();
  var year = today.getFullYear();
  document.write(year);
}

function expand() {
    document.getElementById("morelink").style.display = "none";
    document.getElementById("content").style.height = "auto";
    document.getElementById("morecontent").style.display = "block";
}

function manageSpeedBump(site)
{
    newWindow = window.open("../speedBumpPage.aspx?link=" + site, "Links", "toolbar=yes,location=yes,status=yes,scrollbars=yes,menubar=yes,resizable=1,copyhistory=1,width=725,height=450");
}