 sniffer();
	
	function sniffer()
	{
		var OS,browser,version,total,thestring;

		// Check OS
		if (checkIt('mac')) OS = "Mac";
		else if (checkIt('win')) OS = "Windows";
		
		// Check browser
		if (checkIt('safari')) browser = "Safari";
		else if (checkIt('opera')) browser = "Opera";
		else if (checkIt('msie')) browser = "IE";
		else if (checkIt('mozilla')) browser = "Mozilla";

		var combined = OS+browser;

		// Action
		if(combined=="MacIE")
		{
			location.href = '/templates/ieMacBlock____26670.aspx';
		}

	}


	function checkIt(string)
	{
		var detect = navigator.userAgent.toLowerCase();
		place = detect.indexOf(string) + 1;
		thestring = string;
		return place;
	}
