this.ver = navigator.appVersion; 
this.agent = navigator.userAgent; 
this.dom = document.getElementById ? 1 : 0; 
this.opera5 = (this.agent.indexOf("Opera") > -1 && Math.floor(parseInt(this.ver)) == 5) ? 1 : 0; 
this.opera6 = (this.agent.indexOf("Opera") > -1 && Math.floor(parseInt(this.ver)) == 6) ? 1 : 0; 
this.opera7 = (this.agent.indexOf("Opera") > -1 && Math.floor(parseInt(this.ver)) == 7) ? 1 : 0; 
this.opera = (this.opera5 || this.opera6 || this.opera7) ? 1 : 0; 
this.ie5 = (this.ver.indexOf("MSIE 5") > -1 && this.dom && !this.opera) ? 1 : 0; 
this.ie55 = (this.ver.indexOf("MSIE 5.5") > -1 && this.dom && !this.opera) ? 1 : 0; 
this.ie6 = (this.ver.indexOf("MSIE 6") > -1 && this.dom && !this.opera) ? 1 : 0; 
this.ie7 = (this.ver.indexOf("MSIE 7") > -1 && this.dom && !this.opera) ? 1 : 0; 
this.ie4 = (document.all && !this.dom && !this.opera) ? 1 : 0; 
this.ie = (this.ie4 || this.ie5 || this.ie55 || this.ie6) ? 1 : 0; 
this.mac = (this.agent.indexOf("Mac") > -1) ? 1 : 0; 
this.ns6 = (this.dom && parseInt(this.ver) >= 5 && !this.opera) ? 1 : 0; 
this.ns4 = (document.layers && !this.dom) ? 1 : 0; 
this.ok = (this.ie6 || this.ie5 || this.ie55 || this.ie4 || this.ns6 || this.opera7) ? 1 : 0; 
if (this.ie) {
	document.getElementById('texteintro').style.width = "702px";
}
this.ie = (this.ie || this.ie7) ? 1 : 0;
function resize() {
	this.wide = this.ie && document.body.offsetWidth - 20 || innerWidth || 0;
	this.high = this.ie && document.body.offsetHeight - 5 || innerHeight || 0;
}
window.onresize = resize;
