// JavaScript Document
function popup(url, name, height, width, scrollbars)
{
  var popwin;
  var opts =
"left=300, top=50,toolbar=no,status=no,location=no,menubar=no,resizable=no";
opts += ",height=" + height + ",width=" + width +
",scrollbars=" + scrollbars;

  popwin = window.open("", name, opts);
  popwin.focus();
  popwin.location = url;

  return false;
}

function popup2(url, name, height, width, scrollbars)
{
  var popwin;
  var opts =
"left=300, top=50,toolbar=no,status=no,location=no,menubar=no,resizable=no,titlebar.visible=no";
opts += ",height=" + height + ",width=" + width +
",scrollbars=" + scrollbars;

  popwin = window.open("", name, opts);
  popwin.focus();
  popwin.location = url;

  return false;
}

function popup3(url, name, height, width, scrollbars)
{
  var popwin;
  var opts =
"left=300, top=50,toolbar=no,status=no,location=no,menubar=no,resizable=yes,titlebar.visible=no";
opts += ",height=" + height + ",width=" + width +
",scrollbars=" + scrollbars;

  popwin = window.open("", name, opts);
  popwin.focus();
  popwin.location = url;

  return false;
}