AppleIISd/address_decoder_html/fit/report.htm
2017-07-05 19:22:02 +02:00

28 lines
766 B
HTML

<html>
<head>
<script>
function isNS4() {
return ((navigator.appName.indexOf("Netscape") >= 0) && (parseFloat(navigator.appVersion) < 5) ) ? true : false;
}
function isNS7() {
return ((navigator.appName.indexOf("Netscape") >= 0) && (parseFloat(navigator.appVersion) >= 5) ) ? true : false;
}
function init(){
if( isNS4() ){
document.location.href="checkNS4.htm";
}
else if( isNS7() ){
document.location.href="check.htm";
}
else{
document.location.href="appletref.htm";
}
}
</script
</head>
<body onload="javascript:init()" bgcolor="#ffffff" topmargin="0" leftmargin="0" marginheight="0" marginwidth="0">
</body>
</html>