<!--
function PopupWindow(theURL) { //v2.0
 if (! window.focus) return true;
  var href;
  if (typeof(theURL) == 'string')
    href=theURL;
  else
    href=theURL.href;
  window.open(href, "", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=700,height=500");
  return false;
}

function PopupWindow2(theURL) { //v2.0
 if (! window.focus) return true;
  var href;
  if (typeof(theURL) == 'string')
    href=theURL;
  else
    href=theURL.href;
  window.open(href, "", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=870,height=600");
  return false;
}

function PopupMessageWindow(theURL) { //v2.0
  if (! window.focus) return true;
  var href;
  if (typeof(theURL) == 'string')
    href=theURL;
  else
    href=theURL.href;
  window.open(href, "", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,width=280,height=210");
  return false;
}

function mOvr(src,clrOver) { if (!src.contains(event.fromElement)){ src.bgColor = clrOver; }}function mOut(src,clrIn){ if (!src.contains(event.toElement)) { src.style.cursor = 'hand'; src.bgColor = clrIn; }} function mClk(src) { if(event.srcElement.tagName=='TD'){src.children.tags('A')[0].click();} }


-->