
var udate = new Date();
var uver = parseFloat(navigator.appVersion);

		document.cookie = "BrowserType=" + String(navigator.appName);
		document.cookie = "BrowserVersion=" + String(uver);
		document.cookie = "OS=" + String(navigator.platform);
	document.cookie = "MonitorHeight=" + String(screen.height);
	document.cookie = "MonitorWidth=" + String(screen.width);
	document.cookie = "MonitorResolution=" + String(screen.height+"x"+screen.width);
	document.cookie = "MonitorColor=" + String(screen.colorDepth);
	document.cookie = "UserDate=" + String(udate);
