var isMSIE = false;
var isMac = false;

var c = xGetCookie( 'browser_check' );

var ua = navigator.userAgent;
if ( ua.indexOf( "MSIE" ) != -1 ) { isMSIE = true; }
if ( ua.indexOf( "Mac" ) != -1 ) { isMac = true; }

if ( c != "giveittome" && isMSIE && isMac ) {
	window.location = '/mac_ie_notsupported';
}