	function setCookie( sName, sValue ) {
  	document.cookie = sName + "=" + sValue;
	}

  var sBrowserInformation;
	sBrowserInformation	=	"height="					+ screen.height;
	sBrowserInformation	+=	"&width="					+ screen.width;
	sBrowserInformation   	+= 	"&availWidth="				+ screen.availWidth;
	sBrowserInformation	+=  "&availHeight="				+ screen.availHeight;

	sBrowserInformation	+=  "&colorDepth="				+ screen.colorDepth;
  sBrowserInformation	+=  "&platform="				+ navigator.platform;
  
  if (navigator.systemLanguage!=null) {
    sBrowserInformation	+=	"&systemLanguage="			+ navigator.systemLanguage;
  } else {
    sBrowserInformation	+=	"&systemLanguage="			+ navigator.language;
  }

  if (navigator.browserLanguage!=null) {
    sBrowserInformation	+=	"&browserLanguage="			+ navigator.browserLanguage;
  } else {
    sBrowserInformation	+=	"&browserLanguage="			+ navigator.language;
  }

  if (navigator.userLanguage!=null) {
    sBrowserInformation	+=	"&userLanguage="			+ navigator.userLanguage;
  } else {
    sBrowserInformation	+=	"&userLanguage="			+ navigator.language;
  }

  setCookie('browsercaps', sBrowserInformation);