function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function openWindow(theURL,winName,features) {
  x = window.open(theURL,winName,features);
  x.focus();
}

function setStatus(msg) {
  self.status=msg;
  return true;
}

function clearStatus() {
  self.status='';
  return true;
}
