  function stsMsg(msgStr) {
	window.status=msgStr;
  }
 
  function changeIt(ImageToChange, ImageToShow)
            {
            if (document.images)
               {
               document[ImageToChange].src = imgsrc + ImageToShow;
               }
            }

  function popUp(url,theName,theWidth,theHeight){
	newWin=window.open(url,theName,'toolbar=no,scrollbars=yes,width=' + theWidth + ',height=' + theHeight + ',resizable=yes');
	newWin.focus();

  }
  function popUp1(url,theName,theWidth,theHeight){
	newWin=window.open(url,theName,'location=yes,menubar=yes,status=yes,toolbar=yes,scrollbars=yes,width=' + theWidth + ',height=' + theHeight + ',resizable=yes');
	newWin.focus();

  }
  function popUp2(url,theName,theWidth,theHeight){
	newWin=window.open(url,theName,'status=yes,toolbar=yes,scrollbars=yes,width=' + theWidth + ',height=' + theHeight + ',resizable=yes');
	newWin.focus();

  }
  function popUp3(url,theName,theWidth,theHeight){
	newWin=window.open(url,theName,'toolbar=no,alwaysRaised=yes,scrollbars=yes,width=' + theWidth + ',height=' + theHeight + ',resizable=yes');
	newWin.focus();

  }

var version = "other";
var sysvers = "other";
browserName = navigator.appName;
browserVer = parseInt(navigator.appVersion);
browser=navigator.userAgent;

if (browserName == "Netscape" && browserVer >= 4) version = "n4";
else if (browserName == "Netscape" && browserVer < 4) version = "n3";
else if (browserName == "Microsoft Internet Explorer" && browserVer >= 4) version = "e4";
else if (browserName == "Microsoft Internet Explorer" && browserVer < 4) version = "e3";

/*
if ((version =="e4") || (version =="n4") || (version =="e3") || (version =="n3")){
  initImages();
}
*/

