function whatBrowser() 
{
	if(navigator.appName=="Microsoft Internet Explorer")
	{ 
		var ua = navigator.userAgent;
		var MSIEOffset = ua.indexOf("MSIE ");
		if (MSIEOffset == -1) 
		{
			return 0;
		} 
		else 
		{
			if(parseFloat(ua.substring(MSIEOffset + 5, ua.indexOf(";", MSIEOffset)))<=6)
				document.location.href = "http://www.babybazar.it/index.php?id=409";
		}
		
	}
}
