<!--
function open_popup(url) {
    storypage = window.open(url,"subWindow","width=600,height=400,scrollbars=yes");
    storypage.focus();
    return false;
}
function open_popup2(url, width, height) {
    storypage = window.open(url,"subWindow","width="+width+",height="+height+",scrollbars=yes");
    storypage.focus();
    return false;
}

function showLinks(element){
  if (element.style.display=="none"){
    element.style.display = "";
  }
  else{
    element.style.display = "none";
  }
}

function goto_URL(object) {
  window.location.href = object.options[object.selectedIndex].value;
  return false;
}

function showEl(element){
  element.style.display="";
}

function hideEl(element){
  element.style.display="none";
}

//image rollover from tech.irt.org
var flag = false;

function rollIn(imgName) {
    if (document.images && (flag == true)) {
        document[imgName].src = eval(imgName + "on.src");
    }
}

function rollOut(imgName) {  // the normal onMouseOut function
    if (document.images){
        document[imgName].src = eval(imgName + "off.src");
    }
}

//-->


