/*********************************************************
Copyright (C) 2000 Michael Heuser / Firmamentet A/S

Design and code by Michael Heuser
Testting is made with and by Firmamentet A/S

Informations:
The variable "bw" contains all nessary browser information

Date ->
	30/04	2000 - Layers up and running
	24/11	2000 - Netscape 6 Support added
*********************************************************/
function checkBrowser() {
	this.ie=navigator.appName.indexOf("Microsoft Internet Explorer")>-1? true:false;
    this.ns=navigator.appName.indexOf("Netscape")>-1? true:false;

	this.ver=navigator.appVersion;
	this.dom=document.getElementById? true:false;
	this.ie4=(document.all && !this.dom)? true:false;
	this.ns4=(document.layers && !this.dom)? true:false;

	this.ie5=(this.dom && this.ie)? true:false;
	this.ns5=(this.dom && this.ns)? true:false;

	this.compatible=(this.ie4 || this.ns4 || this.dom);
	return this;
}
bw=new checkBrowser();  //Variable bw contains all browser information.

