
if ((document.referrer.indexOf('http://www.rhb.com.my/') > -1) || (document.referrer.indexOf('http://mobile.rhb.com.my/') > -1)) {
	//do nothing 
} else  {
	var isMobile;
	var mobile="j2me|iphone|ipod|symbian";
	
	var useragent=navigator.userAgent.toLowerCase();
	isMobile=useragent.match(mobile);
	
	
	if (isMobile != null) {
		window.location.href = "http://mobile.rhb.com.my/"; }
}
