function popUpWin(thisUrl, thisName, theseParams) {
  remote = open(thisUrl, thisName, theseParams);
}
var remote = null;
function help(f, n, w, h, t) {
  remote = window.open("/helppopup.htm?tab=" + t + "&file=" + f, n, 'width=' + w + ',height=' + h + ',resizable=yes,scrollbars=yes,status=yes');
  if (window.focus) {
    remote.focus()
  }
  if (remote != null) {
    if (remote.opener == null) remote.opener = self;
    window.name = 'store';
  }
}
function change_parent(url) {
  parent.opener.location = url;
  parent.window.close();
}
function forgotPassword(thisUrl, thisName, theseParams) {
  remote = open(thisUrl, thisName, theseParams);
}
