
function initialize_browserinfo()
{doc=DIV(null);appendChildNodes(doc,P(null,"window.document on client:"));obj=window.document;ul=UL();appendChildNodes(ul,LI(null,"URL: "+obj.URL));appendChildNodes(ul,LI(null,"referrer: "+obj.referrer));appendChildNodes(doc,ul);appendChildNodes(doc,P(null,"window.navigator on client:"));obj=window.navigator;ul=UL();appendChildNodes(ul,LI(null,"appCodeName: "+obj.appCodeName));appendChildNodes(ul,LI(null,"appMinorVersion: "+obj.appMinorVersion));appendChildNodes(ul,LI(null,"appName: "+obj.appName));appendChildNodes(ul,LI(null,"appVersion: "+obj.appVersion));appendChildNodes(ul,LI(null,"cookieEnabled: "+obj.cookieEnabled));appendChildNodes(ul,LI(null,"cpuClass: "+obj.cpuClass));appendChildNodes(ul,LI(null,"onLine: "+obj.onLine));appendChildNodes(ul,LI(null,"platform: "+obj.platform));appendChildNodes(ul,LI(null,"userAgent: "+obj.userAgent));appendChildNodes(ul,LI(null,"browserLanguage: "+obj.browserLanguage));appendChildNodes(ul,LI(null,"systemLanguage: "+obj.systemLanguage));appendChildNodes(ul,LI(null,"userLanguage: "+obj.userLanguage));appendChildNodes(doc,ul);appendChildNodes(doc,P(null,"window.history on client:"));obj=window.history;ul=UL();appendChildNodes(ul,LI(null,"length: "+obj.length));appendChildNodes(ul,LI(null,"object: "+obj));try
{appendChildNodes(ul,LI(null,"current: "+obj.current));}
catch(err)
{}
try
{appendChildNodes(ul,LI(null,"previous: "+obj.previous));}
catch(err)
{}
try
{appendChildNodes(ul,LI(null,"next: "+obj.next));}
catch(err)
{}
appendChildNodes(doc,ul);appendChildNodes(doc,P(null,"window.screen on client:"));obj=window.screen;ul=UL();appendChildNodes(ul,LI(null,"width x Height: "+obj.width+"x"+obj.height));appendChildNodes(ul,LI(null,"availWidth x availHeight: "+obj.availWidth+"x"+obj.availHeight));appendChildNodes(ul,LI(null,"colorDepth: "+obj.colorDepth));appendChildNodes(ul,LI(null,"bufferDepth: "+obj.bufferDepth));appendChildNodes(ul,LI(null,"deviceXDPI: "+obj.deviceXDPI));appendChildNodes(ul,LI(null,"deviceYDPI: "+obj.deviceYDPI));appendChildNodes(ul,LI(null,"logicalXDPI: "+obj.logicalXDPI));appendChildNodes(ul,LI(null,"logicalYDPI: "+obj.logicalYDPI));appendChildNodes(ul,LI(null,"fontSmoothingEnabled: "+obj.fontSmoothingEnabled));appendChildNodes(ul,LI(null,"pixelDepth: "+obj.pixelDepth));appendChildNodes(ul,LI(null,"updateInterval: "+obj.updateInterval));appendChildNodes(doc,ul);swapDOM("browserinfo",doc);}
addLoadEvent(initialize_browserinfo);
