function validateBrowser()
{

/*
alert(navigator.appVersion);
alert(navigator.appName);
alert(navigator.platform);
*/
	strVer = navigator.appVersion
	intVer = parseInt(strVer.substring(strVer.indexOf("MSIE") + 5, strVer.lastIndexOf(";")))

/*
alert("NOT IE: " + (navigator.appVersion.indexOf("MSIE") == -1));
alert("Version < 5: " + (intVer < 5));
alert("Version isNaN: " + isNaN(intVer));
alert("Combo: " + ((intVer < 5) || isNaN(intVer)));
alert("IS Netscape: " + (navigator.appName == "Netscape"));
*/

	if( navigator.appVersion.indexOf("MSIE") == -1
	    || (intVer < 5 || isNaN(intVer))
	    || navigator.appName == "Netscape" )
	{
		strMsgGetIE="<TABLE cellSpacing=0 cellPadding=0 width='95%' border=0 height='8'><TR>"
		strMsgGetIE+="<TD bgColor='#336699' height=25 width=15>&nbsp;</TD><TD bgColor='#666666' width=500px><FONT face=Tahoma "
		strMsgGetIE+="size=4 color=white><b>&nbsp;Webform Notification</B></FONT></TD></TR>"
		strMsgGetIE+="<TR><TD bgColor='#cccccc' width=15>&nbsp;</TD><TD bgColor='#cccccc' width=500px><BR>"
		strMsgGetIE+="<p><font face='Tahoma' size='2'>This page requires Microsoft Internet Explorer 5.0 or higher.</p>";
		strMsgGetIE+="<p><font face='Tahoma' size='2'>This restriction is in place to allow proper validation of form data.</p>";
		strMsgGetIE+="<a href='http://www.microsoft.com/isapi/redir.dll?Prd=Office&Sbp=Access&Pver=10&Ar=DPdesigner&Sba=IEhome&Plcid=1033' target='_blank' title='Link opens in a new window.'><p align='center'>"
		strMsgGetIE+="Click here to go to Microsoft's Internet Explorer Website.</a></font></p><br></TD></TR></TABLE>"
		document.getElementById("ieactivenotice").innerHTML = strMsgGetIE;
	}
	else
	{
		document.getElementById("ieactivenotice").style.display = "none";
		document.getElementById("maincontentmf").style.display  = "";
		indexelements();
	}
}
