var theWidth = screen.width;
var theHeight = screen.height;


function popFS(mylink, windowname, width, height) {
  if (!window.focus) {
    return true;
  }
  var href;
  href = (typeof(mylink) == 'string') ? mylink : mylink.href;
  href = href + "&width=" + width + "&height=" + height;
  window.open(href, 'FSConsole');
  return false;
}

function launch(newURL, newName, newFeatures, orgName) {
  return launch(newURL, newName, newFeatures);
}

function launch(newURL, newName, newFeatures) {
  var remote = open(newURL, newName, newFeatures);
  if (remote.opener == null) {
    remote.opener = window;
  }			
  return remote;
}

