function detectmobile(mdot)
{

	if(navigator.userAgent.match(/iPhone/i) || navigator.userAgent.match(/iPod/i) || navigator.userAgent.match(/iPad/i) || navigator.userAgent.match(/android/i) || navigator.userAgent.match(/Symbian/i) || navigator.userAgent.match(/Nokia/i))
	{
		if (document.cookie.indexOf("mobile_redirect=false") < 0)
		{
			if (confirm("We now offer a mobile theme. Click OK to view it"))
			{
				window.location = mdot;
			}
			else
			{
				setCookies();
			}
		}
	}
}
function setCookies() {
	var date = new Date();
	var days = 1;
	date.setTime(date.getTime()+(days*24*60*60*1000));
	var expires = ";expires="+ date.toGMTString();
	document.cookie = "mobile_redirect=false" + expires; 
}

