
var bWin2K  = (navigator.userAgent.indexOf('Windows NT 5')>0) || (navigator.userAgent.indexOf('Windows NT 6')>0);
var bMacOSX = navigator.userAgent.indexOf('Mac OS X')>0;
var bIE6    = (navigator.userAgent.indexOf('MSIE 6')>0) || (navigator.userAgent.indexOf('MSIE 7')>0) || (navigator.userAgent.indexOf('MSIE 8')>0);
var bFF2    = (navigator.userAgent.indexOf('Firefox/2')>0) || (navigator.userAgent.indexOf('Firefox/3')>0);
var bSaf4   = (navigator.userAgent.indexOf('Safari/4')>0) || (navigator.userAgent.indexOf('Safari/5')>0);

function LaunchTest()
{
document.location="http://download.websoftwareunlimited.com/java/ConnectionTest.jnlp";
}

var bOSCheck = (bWin2K || bMacOSX);
document.getElementById(bOSCheck ?'divOSYes':'divOSNo').style.display='inline';

var bWBCheck = ((bWin2K && (bIE6 || bFF2)) || (bMacOSX && (bFF2 || bSaf4)));
document.getElementById(bWBCheck ?'divWBYes':'divWBNo').style.display='inline';

var bJavaCheck = false;

function doJavaCheck()
{
try{bJavaCheck=document.getElementById('appletVersionCheck').VersionCheck();}catch(e){document.getElementById('divAppletNo').innerText += '\n' + e.description;};
document.getElementById('divApplet').style.display='none';
document.getElementById(bJavaCheck?'divAppletYes':'divAppletNo').style.display='inline';
}

window.setTimeout("doJavaCheck()",500);

