<!-- begin
function display() {
window.onerror=null;

colors = window.screen.colorDepth;
document.formcheck.color.value = Math.pow (2, colors);
if (window.screen.fontSmoothingEnabled == true)
document.formcheck.fonts.value = "Yes";
else document.formcheck.fonts.value = "No";

document.formcheck.navigator.value = navigator.appName;
document.formcheck.version.value = navigator.appVersion;
document.formcheck.colordepth.value = window.screen.colorDepth;
document.formcheck.width.value = window.screen.width;
document.formcheck.height.value = window.screen.height;
document.formcheck.maxwidth.value = window.screen.availWidth;
document.formcheck.maxheight.value = window.screen.availHeight;
document.formcheck.codename.value = navigator.appCodeName;
document.formcheck.platform.value = navigator.platform;
if (navigator.javaEnabled() < 1) document.formcheck.java.value="No";
if (navigator.javaEnabled() == 1) document.formcheck.java.value="Yes";

if(navigator.javaEnabled() && (navigator.appName != "Microsoft Internet Explorer")) {
vartool=java.awt.Toolkit.getDefaultToolkit();
addr=java.net.InetAddress.getLocalHost();
host=addr.getHostName();
ip=addr.getHostAddress();
<!--  alert("Your host name is '" + host + "'\nYour IP address is " + ip);  -->
   }
}
// end -->