function swapper(imgName,imgObjName)
  {
  if (document.images)
    {
    document.images[imgName].src = eval(imgObjName + ".src");
    }
  }
function popUp(URL)
  {
  day = new Date();
  id = day.getTime();
  eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=718,height=498,left = 340,top = 212');");
  }
function swapStyle(id, newclass)
  {
  if (document.getElementById)
    {
    document.getElementById(id).className = newclass;
    }
  } 
function InJumpToIt(list)
  {
  var newPage = list.options[list.selectedIndex].value
  if (newPage != "")
    {
    location.href=newPage
    }
  }
function ExJumpToIt(list)
  {
  var newPage = list.options[list.selectedIndex].value
  if (newPage != "")
    {
    window.open(newPage)
    }
  }


