// Detects the browser and version and if it is too old, it redirects them to a page where they can download latest browsers
//Delwar Ahmed 27 November 2003


var Browser = navigator.appName
var Version = parseInt(navigator.appVersion)

if ((Browser=="Netscape")&&(Version<=4))
{
	window.location ="http://www.tonystrong.com/pages/downloadbrowser.htm";
}
if ((Browser=="Microsoft Internet Explorer")&&(Version<=3))
{
	window.location ="http://www.tonystrong.com/pages/downloadbrowser.htm";
}