function BrowserSwitch(Microsoft,Other,Java)
{
	if (	navigator.appName == "Microsoft Internet Explorer" &&
		navigator.appVersion.substr(0,1)>=4 &&
		Microsoft != "" )
		window.location.replace(Microsoft)
	else	if (	navigator.javaEnabled() &&
			Java!="")
			window.location.replace(Java)
		else 	if (	Other!= "" )
			window.location.replace(Other)
			else document.write("<a href='http://www.microsoft.com/downloads/' target=_blank><div style='color:red'>This page has been designed to be used with Microsoft Internet Explorer 4 or higher. Using the " + navigator.appName + " " + navigator.appVersion + " browser like you do will not take full advantage of this page or may produce problems viewing some of my pages. You can download the latest version of the Microsoft Internet Explorer by clicking here.</div></a><p>");
}

