	function BrowserDetect(){
		this.IE = (document.all)?true:false
		this.NN4 = (navigator.appName.indexOf('Netscape') >= 0 && navigator.appVersion.charAt(0)=="4")?true:false
		this.NN6 = (document.getElementById && !this.IE)?true:false
		this.MAC = (navigator.userAgent.toLowerCase().indexOf("mac")!=-1)?true:false
		this.NN7 = (navigator.appName.indexOf('Netscape') >= 0 && navigator.appVersion.charAt(0)=="5")?true:false
		this.W3C = document.getElementById? true : false;
	}
	
	function ResolutionDetect(){
		this.is1024 = (window.screen.width == 1024) ? true : false;
		//this.Height = window.screen.height;
		
	}

	var thisBrowser = new BrowserDetect()
	var thisResolution = new ResolutionDetect()
	

