<!-- hide this script from non-javascript-enabled browsers

// function that displays status bar message

function dm(msgStr) {
  document.returnValue = false;
  if (document.images) {
     window.status = msgStr;
     document.returnValue = true;
  }
}
var showMsg = navigator.userAgent != "Mozilla/4.0 (compatible; Mac_PowerPC; MSIE 4.0;)";
function dmim(msgStr) {
  document.returnValue = false;
  if (showMsg) {
    window.status = msgStr;
    document.returnValue = true;
  }
}
//-------------------------------------------------------------------------
browserName = navigator.appName;
browserVer = parseInt(navigator.appVersion);
if (browserName == "Netscape" && browserVer >= 3) version = "n3";
        else version = "n2";
function newWindow(myurl,wwidth,wheight,scroll){
        focusWindow = window.open(myurl, 'myWindow', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars='+scroll+',resizable=yes,copyhistory=no,width='+wwidth+',height='+wheight);
        if (version=="n3"){
                focusWindow.focus();
        }
}
