<!-- Begin

function formHandler(){
 var URL = document.form.site.options[document.form.site.selectedIndex].value;
 if (URL != "") window.location.href = URL;
 return true;
}

var sts = "";
var wnew = "What's new in the last QView version"

function StsText(txt){
  sts = window.status;
  if (txt == "wnew") txt = wnew;
  window.status = txt;
  return true;
}

function OldStsText(){
  window.status = sts;
  return true;
}

// End -->
