<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Browser Details...</title>
<script language="javascript" type="text/javascript">
function details() {
window.onerror=null;
document.frmDetails.navigator.value = navigator.appName;
document.frmDetails.version.value = navigator.appVersion;
document.frmDetails.colordepth.value = window.screen.colorDepth;
document.frmDetails.width.value = window.screen.width;
document.frmDetails.height.value = window.screen.height;
document.frmDetails.maxwidth.value = window.screen.availWidth;
document.frmDetails.maxheight.value = window.screen.availHeight;
document.frmDetails.codename.value = navigator.appCodeName;
document.frmDetails.platform.value = navigator.platform;
if (navigator.javaEnabled() < 1) document.frmDetails.java.value="No";
if (navigator.javaEnabled() == 1) document.frmDetails.java.value="Yes";
}
</script>
</head>
<body onload="details();">
<form name=frmDetails>
<table border=1 width=499>
<tr>
<td width="133">current resolution:</td>
<td width="350" align=center><input type=text size=4 maxlength=4 name=width>
x <input type=text size=4 maxlength=4 name=height></td>
</tr>
<tr>
<td>
browser:</td>
<td align=center><input type=text name=navigator></td>
</tr>
<tr>
<td>
max resolution:</td>
<td align=center><input type=text size=4 maxlength=4 name=maxwidth>
x <input type=text size=4 maxlength=4 name=maxheight></td>
</tr>
<tr>
<td>
version:</td>
<td align=center><input type=text name=version></td>
</tr>
<tr>
<td>
color depth:</td>
<td align=center><input type=text size=2 maxlength=2 name=colordepth> bit</td>
</tr>
<tr>
<td>
code name:</td>
<td align=center><input type=text name=codename></td>
</tr>
<tr>
<td>
platform:</td>
<td align=center><input type=text name=platform></td>
</tr>
<tr>
<td>
java enabled:</td>
<td align=center><input type=text size=3 maxlength=3 name=java></td>
</tr>
<tr>
<td colspan=2 align=center>
<input type=button name=again value="Refresh?" onclick="details();"></td>
</tr>
</table>
</form>
</body>
</html>