<!--
/*
/////////////////////////////////////////////////////////////////////////
LICENSE AGREEMENT: 
IMPORTANT - READ BEFORE COPYING, INSTALLING OR USING.
Script Name: WE IS V.2.00
Copyright (C) 2001 - 2003 Web Editors - All rights reserved.

CONDITIONS:
Redistribution and use of this JavaScript, with or without modification, are permitted
provided that this LICENSE AGREEMENT is intact. Redistribution of this JavaScript in
any form for profit is strictly prohibited. The name "Web Editors" may not be used to
endorse or promote products derived from this JavaScript without specific prior written
permission. This JavaScript must be isolated within it's own <script></script> tags.

Web Editors retains all right, title, and interest in and to the Original JavaScript. This
JavaScript is protected by copyright laws. If you modify this JavaScript; the modified
files must carry prominent notices stating that you made changes and the date of any
changes in the NOTES section below.

DISCLAIMER:
THIS JAVASCRIPT IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. IN NO EVENT SHALL WEB
EDITORS BE LIABLE FOR ANY LOSS OF PROFITS, LOSS OF BUSINESS, LOSS OF USE OR DATA,
INTERRUPTION OF BUSINESS, OR FOR INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
OF ANY KIND, ARISING FROM ANY ERROR IN THIS JAVASCRIPT.

NOTES:
Author: Alexander Nietzen M. - Web Editors.
Script date: 01/11/2003 - (for checking version upgrades)
for installation insructions and free download visit http://www.webeditors.com
/////////////////////////////////////////////////////////////////////////
*/
function WEIS(){
	this.agt    	= navigator.userAgent.toLowerCase();
	this.ver        = navigator.appVersion.toLowerCase();
	this.dom        = document.getElementById?1:0;
    this.major  	= parseInt(navigator.appVersion);
    this.minor  	= parseFloat(navigator.appVersion);
	this.mac    	= (this.agt.indexOf("mac")!=-1);
	this.gecko      = (this.agt.indexOf('gecko') != -1)?1:0;
	this.ns         = (this.agt.indexOf('mozilla') != -1 && (this.agt.indexOf('spoofer') == -1 && this.agt.indexOf('compatible') == -1))?1:0;
	this.ns45       = (this.ns && this.minor >= 4.5 && !this.dom)?1:0;
	this.ns6        = (this.ns && this.dom && this.major == 5 && this.gecko && window.sidebar && !document.layers)?1:0;
	this.opera5     = (this.agt.indexOf("opera 5")>-1 && window.opera)?1:0;
	this.opera6     = (this.agt.indexOf("opera 6")>-1 && window.opera)?1:0;
	this.ie4        = (!window.opera && document.all && !this.dom)?1:0;
	this.ie5        = (!window.opera && this.ver.indexOf("msie 5")>-1 && this.dom)?1:0;
	this.ie6        = (!window.opera && this.ver.indexOf("msie 6")>-1 && this.dom)?1:0;
}
var WEis = new WEIS();
//-->