function ValidateBrowser()
{
	// AAL : 11.05.03 : Check for browser compatability
	var sAgt = navigator.userAgent.toUpperCase();
	var sRedirURL = "UnknownBrowser.shtml";

	if (( sAgt.indexOf("MSIE") != -1 ) && ( sAgt.indexOf("OPERA") == -1 ))
	{ 
		// Allow internet explorer browsers greater then or equal to version 5.0
		var dblVersion = sAgt.substring( sAgt.indexOf("MSIE") + 5, sAgt.indexOf("MSIE") + 8 );

		if ( dblVersion < 5.0 ) 
		{
			window.location.href = sRedirURL;
		}
	}
	else if (sAgt.indexOf("NETSCAPE") != -1) 
	{
		// Allow netscape browsers greater than version 6.1
		var dblVersion = sAgt.substring( sAgt.lastIndexOf("/") + 1, sAgt.lastIndexOf("/") + 4 );

		if ( dblVersion < 6.2 )
		{
			window.location.href = sRedirURL;
		}
	}
	else if (sAgt.indexOf("FIREBIRD") != -1) 
	{
		// Allow mozilla firebird greater than version 0.6
		var dblVersion = sAgt.substring( sAgt.lastIndexOf("/") + 1, sAgt.lastIndexOf("/") + 4 );

		if ( dblVersion <= 0.7 )
		{
			window.location.href = sRedirURL;
		}
	}
}
