var $user_agent = " " + navigator.userAgent;

if ( $user_agent.search("MSIE 6.0") > 0 )
	{ top.location.href = "http://www.macfixer.net/simple/?browser=ie6"; }

if ( $user_agent.search("MSIE 7.0") > 0)
	{ top.location.href = "http://www.macfixer.net/simple/?browser=ie7"; }



function play_a_sound($name)
	{
	if (document.createElement('audio').canPlayType)
		{
		document.getElementById($name).play();
		}
	}
