<!--
function getBrowserInfo() {
//The version string from the navigator object
	this.ver=navigator.appVersion
//The useragent string from the navigator object
	this.agent=navigator.userAgent
//True if the browser support DOM - document object model
	this.dom=document.getElementById?1:0;
	
//True if the browser is Opera 5
this.opera5=this.agent.indexOf("Opera 5")>-1
//True if the browser is Explorer 5
this.ie5=(this.ver.indexOf("MSIE 5")>-1 && this.dom && !this.opera5)?1:0; 
//True if the browser is Explorer 6
this.ie6=(this.ver.indexOf("MSIE 6")>-1 && this.dom && !this.opera5)?1:0;
//True if the browser is Explorer 4
this.ie4=(document.all && !this.dom && !this.opera5)?1:0;
//True if the browser is Expl
this.ie=this.ie4||this.ie5||this.ie6
//True if the user is using MAC OS
this.mac=this.agent.indexOf("Mac")>-1
//True if the browser is Netscape 6 or newer
this.ns6=(this.dom && parseInt(this.ver) >= 5) ?1:0; 
//True if the browser is Netscape 4
this.ns4=(document.layers && !this.dom)?1:0;

//True if any of the other browsers are true. If this is false then the browser does not support DHTML
this.dhtml_compatible =(this.ie6||this.ie5||this.ie4||this.ns4||this.ns6||this.opera5)
	
	
	return this;
}

var JCbrowser=new getBrowserInfo(); 
//OBS ie3 kan ikke lęse eksterne scripts!

// -->