function DM_redirect(MobileURL){
	try {
		var CurrentUrl = location.href
		var noredirect = document.location.search;
		if (noredirect.indexOf("no_redirect=true") < 0){
			if ((navigator.userAgent.match(/(iPhone|iPod|BlackBerry|Android|webOS|Windows CE|IEMobile|Opera Mini|Opera Mobi|HTC|LG-|LGE|SAMSUNG|Samsung|Symbian|Nokia|PlayStation|PLAYSTATION|Nintendo DSi)/i)) ) {
				location.replace(MobileURL);
                //location.replace(MobileURL + "?url=" + encodeURIComponent(CurrentUrl));
			}
		}	
	}
	catch(err){}
}

