
var api = 0;
function MM_openBrWindow(theURL,winName,features) { //v2.0
features = features + ', toolbar=1, scrollbars=1';
window.open(theURL,winName,features);
//window.open(theURL, theURL, );
}

function BrowserInfo()
{
  this.name = navigator.appName;
  this.codename = navigator.appCodeName;
  this.version = navigator.appVersion.substring(0,4);
  this.platform = navigator.platform;
  this.javaEnabled = navigator.javaEnabled();
  this.screenWidth = screen.width;
  this.screenHeight = screen.height;
}
function versionCheck() {
	var b = new BrowserInfo();
	if(b.version < 5.0) {
		alert("A warning, if this page is not displaying properly it is because your browser is too old.  Please upgrade.");
	}
}


