<!--
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=670,height=570,top=75,left=300");
  return false;
}

function PopupWindow1(theURL) { //v2.0
 if (! window.focus) return true;
  var href;
  if (typeof(theURL) == 'string')
    href=theURL;
  else
    href=theURL.href;
  window.open(href, "", "fullscreen=3,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=440,height=180,top=195,left=300");
  return false;
}

function PopupWindow2(theURL, Width, Height) { //v3.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=" + Width + ",height=" + Height);
  return false;
}

function PopupWindow3(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=no,width=598,height=406");
  return false;
}
-->