if(navigator.appName!="Microsoft Internet Explorer") window.location.href="/notie.htm";
else
{
	useragent=navigator.userAgent;
	pos=useragent.indexOf('MSIE');
	if(pos>-1)
	{
		pos2=useragent.indexOf('Opera');
		if(pos2>-1) window.location.href="/notie.htm";
		else
		{
			bVer=useragent.substring(pos+5);
			pos=bVer.indexOf(';');
			bVer=bVer.substring(0,pos);
			if(bVer<5) window.location.href="/notie.htm";
		}
	}
	else window.location.href="/notie.htm";
}
