function redirectForNonIE5(strRedirectLocation)
{
	//make sure IE5+ is being used
	var strBrowser = navigator.userAgent;
	//parse the version out
	var strVersion = strBrowser.substring((strBrowser.indexOf(";") + 1),strBrowser.lastIndexOf(";"));
	//at this point, strVersion == MSIE 5.01
	var strMajorVer = strVersion.substr((strVersion.indexOf(".") - 1), 1);
	//filter
	if ( strMajorVer < 5 || -1 == strVersion.indexOf("MSIE") )
	{
		location = strRedirectLocation;
	}
}	     