<!--
	function BrowserVerChecker() {
		var tempstring= navigator.appName;
		this.BrowserName=((tempstring=='Netscape')?'NS':((tempstring=='Microsoft Internet Explorer')?'IE':tempstring));
		this.BrowserVersion= navigator.appVersion;
		this.Version= parseInt(this.BrowserVersion);
		this.NS=(this.BrowserName=="NS" && this.Version>=4);
		this.NS4=(this.BrowserName=="NS" && this.Version==4);
		this.NS5=(this.BrowserName=="NS" && this.Version==5);
		this.IE3=(this.BrowserName=="IE" && this.Version<=3);
		this.IE=(this.BrowserName=="IE" && this.Version>=4);
		this.IE4=(this.BrowserVersion.indexOf('MSIE 4')>0);
		this.IE5=(this.BrowserVersion.indexOf('MSIE 5')>0);
		this.leftProperty=(this.NS4)?('left'):((this.NS)?('style.left'):('style.pixelLeft'));
		this.heightProperty=(this.NS4)?('clip.height'):((this.NS)?('style.height'):('style.pixelHeight'));
		this.topProperty=(this.NS4)?('top'):((this.NS)?('style.top'):('style.pixelTop'));
		this.hiddenValue=(this.NS4)?('hide'):('hidden');
		this.visibleValue=(this.NS4)?('show'):('visible');
		this.visibleProperty=(this.NS4)?('visibility'):('style.visibility');
	};
	var navCheck=new BrowserVerChecker();

	function stripPx(i) {
		return(parseInt(i.toString().replace(/px/gi,'')));
	};
	
	function MM_reloadPage(init) {  //reloads the window if Nav4 resized
	  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
	    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
	  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
	}
	MM_reloadPage(true);
//-->
