// JavaScript Document
if(detectMobile()){
	window.open('http://m.searcheasy.com.hk','_self');
}

function detectMobile(){
	var mobiledevice = new Array(
								 'iphone', 'android', 'ipod', 'series60', 'symbian', 'window ce', 'blackberry', 'window phone', 'palm', 'ppc', 'iemobile', 'wap', 'opera mini'
								 );
	var uagent = navigator.userAgent.toLowerCase();
	for(MD in mobiledevice){
		if(uagent.search(mobiledevice[MD]) > -1){
			return true;
			break;
		}
	}
	return false;
}
