// JavaScript Document
function BrowserInfo()
{
  this.name = navigator.appName;
  this.codename = navigator.appCodeName;
  this.version = navigator.appVersion.substring(0,4);
  this.platform = navigator.platform;
  this.javaEnabled = navigator.javaEnabled();
  this.screenWidth = screen.width;
  this.screenHeight = screen.height;
}
var b = new BrowserInfo();
document.write("<table width=\"100%\" border=\"0\" cellspacing=\"5\" cellpadding=\"3\"><tr><td align=\"center\"><h3>Ihre Konfiguration<\/h3><\/td></tr><tr><td align=\"center\"><h5>Browser: " + b.name + "<\/h5><\/td><\/tr><tr><td align=\"center\"><h5>Version: " + b.version + "<\/h5><\/td><\/tr><tr><td align=\"center\"><h5>Plattform: " + b.platform + "<\/h5><\/td><\/tr><tr><td align=\"center\"><h5>Auflösung: " + b.screenWidth + " x " + b.screenHeight + "<\/h5><\/td><\/tr><\/table>");


