<HTML>
<HEAD>
<TITLE>Beyond the browser</TITLE>
</HEAD>
<BODY>
<SCRIPT LANGUAGE = "JavaScript">
<!--

function isWin95() {
    if (navigator.appVersion.indexOf("95") != -1) return true;
    else return false;
}

function isPPC() {
    if (navigator.appVersion.indexOf("PPC") != -1) return true;
    else return false;
}

function isWin31() {
    if (navigator.appVersion.indexOf("16") != -1) return true;
    else return false;
}

if (isWin95()) {
document.write('<A HREF ="dl32.exe">Get</A> our software for Windows 95.');
}
else if (isWin31()) {
document.write('<A HREF = "dl16.exe">Get</A> our software for Windows 3.1.');
}
else if(isPPC()) {
document.write('<A HREF = "dl.hqx">Get</A> our software for Macintosh.');
}

// -->
</SCRIPT>
</BODY>
</html>