//Browser Detect was taken from Ball drop @ http://javascript.internet.com;
//This file is used by many of the other js files.
function browserCheck ()
{
  var a, b, v, NS, NS4, NS5, NS6, IE, IE4, IE5, IE6, MIN, WIN32;
  a = navigator.platform;
  this.a = a;
  b = navigator.appName ;
  if(b == "Netscape")
    this.b = "NS";
  else if(b == "Microsoft Internet Explorer")
    this.b = "IE";
  else this.b = b;
  this.v = parseInt(navigator.appVersion);
  this.NS = (this.b == "NS" && this.v >=4);
  this.NS4 = (this.b == "NS" && this.v ==4);
  this.NS5 = (this.b == "NS" && this.v ==5);
  this.NS6 = (this.b == "NS" && this.v >=5);
  this.NS61 = (this.b == "NS" && this.v >=5 && navigator.userAgent.indexOf("6.1")>0);
  this.NS62 = (this.b == "NS" && this.v >=5 && navigator.userAgent.indexOf("6.2")>0);
  this.IE = (this.b == "IE" && this.v >=4);
  this.IE4 = (navigator.userAgent.indexOf('MSIE 4')>0);
  this.IE5 = (navigator.userAgent.indexOf('MSIE 5')>0)||(navigator.userAgent.indexOf('MSIE 6')>0);
  this.IE6 = (navigator.userAgent.indexOf('MSIE 6')>0);
  this.MIN = (this.NS || this.IE);
  this.WIN32 = (a == "Win32");
  this.MAC = (a.indexOf("Mac") >= 0);
  this.MACIE50 = ((a.indexOf("Mac") >= 0) && (navigator.userAgent.indexOf("MSIE 5.0")>0));
}

var is = new browserCheck();

if(document.layers)
{
	origWidth=innerWidth;
	origHeight=innerHeight;
	onresize=function(){
		if(innerWidth!=origWidth||innerHeight!=origHeight)
			window.history.go(0);
	}
}
window.status='';

