/* Copyright 2006 by Thomas Schwarz http://www.billy-web.de */
document.Bewertung.System.value = navigator.userAgent
if (document.Bewertung.System.value.indexOf("Win98") != -1 || document.Bewertung.System.value.indexOf("Windows 98") != -1)
 document.Bewertung.System.value = "Windows 98";
if (document.Bewertung.System.value.indexOf("Win95") != -1 || document.Bewertung.System.value.indexOf("Windows 95") != -1)
 document.Bewertung.System.value = "Windows 95";
if (document.Bewertung.System.value.indexOf("WinNT 5.0") != -1 || document.Bewertung.System.value.indexOf("Windows NT 5.0") != -1)
 document.Bewertung.System.value = "Windows 2000";
if (document.Bewertung.System.value.indexOf("WinNT 5.1") != -1 || document.Bewertung.System.value.indexOf("Windows NT 5.1") != -1)
 document.Bewertung.System.value = "Windows XP";
if (document.Bewertung.System.value.indexOf("WinNT 5.2") != -1 || document.Bewertung.System.value.indexOf("Windows NT 5.2") != -1)
 document.Bewertung.System.value = "Windows 2003";
if (document.Bewertung.System.value.indexOf("WinNT 6.0") != -1 || document.Bewertung.System.value.indexOf("Windows NT 6.0") != -1)
 document.Bewertung.System.value = "Windows Vista";
if (document.Bewertung.System.value.indexOf("WinNT") != -1 || document.Bewertung.System.value.indexOf("Windows NT") != -1)
 document.Bewertung.System.value = "Windows NT";
if (document.Bewertung.System.value.indexOf("WinCE") != -1 || document.Bewertung.System.value.indexOf("Windows CE") != -1)
 document.Bewertung.System.value = "Windows CE";
if (document.Bewertung.System.value.indexOf("Macintosh") != -1 || document.Bewertung.System.value.indexOf("Mac OS") != -1)
 document.Bewertung.System.value = "Mac OS";
if (document.Bewertung.System.value.indexOf("Unix") != -1 || document.Bewertung.System.value.indexOf("Linux") != -1)
 document.Bewertung.System.value = "Unix";
document.write(document.Bewertung.System.value);
