﻿<!--

function advice() {
if (bName == '') {
alert("You are using an unidentified browser." + '\n' + '\n' + "This browser is untested and might affect the appearance and functionality of this page.");
}
else if (bName == "Netscape")
{
alert("You are using the " + bName + " browser  which is now obsolete." + '\n' + '\n' + "There is a more up-to-date Firefox browser available which might improve the appearance and functionality of this page.");
}
else if ((bName == "Internet Explorer" && bVersion < 8.0) || (bName == "Firefox" && bVersion < 3.5) || (bName == "Safari" && bVersion < 4.0) || (bName == "Chrome" && bVersion <2.0) || (bName == "Opera" && bVersion < 9.64) || (bName == "America Online" && bVersion < 1.5))
{
alert("You are using the " + bName + " browser, version " + bVersion +"." + '\n' + '\n' + "There is a more up-to-date version of this browser available which might improve the appearance and functionality of this page.");
}
else {
alert("You are using the " + bName + " browser, version " + bVersion +"." + '\n' + '\n' + "This is the most up-to-date version of this browser so this page should appear and function properly.");
}
}

// -->