var isMobile=false;

if( navigator.userAgent.match(/Android/i) || navigator.userAgent.match(/webOS/i) || navigator.userAgent.match(/iPhone/i) || navigator.userAgent.match(/iPod/i) || navigator.userAgent.match(/iPad/i) || navigator.userAgent.match(/Blackberry/i) || navigator.userAgent.match(/Symbian/i)){
	isMobile=true;
}

var urlParams = decodeURI( window.location.search.substring(1) );
var pairs = urlParams.split("&");
if(pairs!='') {
	var key_value = pairs[0].split("=");
	if(key_value[0] == "no_mobile" && key_value[1] == 'true') {
		isMobile = false;
	}
}

if(isMobile) {
	window.location="http://www.mandarinrestaurant.com/mobile_mandarin/index.asp";
}

