//pop up window

function MM_advOpenBrWindow(theURL,winName,features,orgName) {
  var remote = open(theURL, winName, features);
  if (remote.opener == null) // if something went wrong
    remote.opener = window;
  remote.opener.name = orgName;
  return remote;
}
