function changeLoc (address) {
  window.location.href = address;
}

function onOver (td) {
  if(document.getElementById||(document.all && !(document.getElementById))){
    td.style.backgroundColor="#1642B4";
    td.style.cursor="hand";
  }
}

function onOut (td) {
  if(document.getElementById||(document.all && !(document.getElementById))){
    td.style.backgroundColor="orange";
  }
}

function onOver2 (td) {
  if(document.getElementById||(document.all && !(document.getElementById))){
    td.style.backgroundColor="#1642B4";
    td.style.cursor="hand";
  }
}

function onOut2 (td) {
  if(document.getElementById||(document.all && !(document.getElementById))){
    td.style.backgroundColor="#1642B4";
  }
}

function openWin (theURL, winName, features)
{
   window.open (theURL, winName, features);
}

function openWindow (theURL, winName, features)
{
   window.open (theURL, winName, 'scrollbars=yes,width=800,height=620');
}

function openWindowTul (theURL, winName, features)
{
   window.open (theURL, winName, 'scrollbars=yes,width=550,height=350');
}

