// JavaScript Document
var devices = new Array('nokia', 'iphone', 'ipad', 'iphone', 'blackberry', 'sony', 'lg',
'htc_tattoo', 'samsung', 'symbian', 'SymbianOS', 'elaine', 'palm', 'series60', 'windows ce', 'android', 'obigo', 'netfront', 'openwave', 'mobilexplorer', 'operamini', 'BlackBerry');

var url_redirect = '/mobile/index.asp';
 
function mobiDetect()
{
	var userAgent = navigator.userAgent.toLowerCase();
	//alert(userAgent);
    for(var i = 0; i < devices.length; i++)
	{
        if(userAgent.search(devices[i]) > 0)
			window.location.href = url_redirect;	
    }
    
}

