/**************************************************************************
	© Razorfish 2001				  
**************************************************************************/


function ClientObj(){
	this.pc = navigator.platform == "Win32" 
	this.mac = navigator.platform != "Win32"
	this.browser = navigator.userAgent;
	this.version = parseInt(navigator.appVersion);
	this.ie = this.browser.indexOf("MSIE") > 0;	
	this.ie4 = this.browser.indexOf("MSIE 4") > 0;
	this.ie45 = this.browser.indexOf("MSIE 4.5") > 0;
	this.ie5 = this.browser.indexOf("MSIE 5") > 0;
	this.ie55 = this.browser.indexOf("MSIE 5.5") > 0;
	this.ie6 = this.browser.indexOf("MSIE 6") > 0;
	this.ns4 = !this.ie && this.version == 4;
	this.ns6 = !this.ie && this.version == 5;
	this.dom = !this.ie && this.version >= 5 || this.ie && parseInt(this.browser.substr(this.browser.indexOf("MSIE ") + 5, 1)) >= 5;
}

client = new ClientObj();

