// JavaScript Document
if((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i))) {
	 if (document.cookie.indexOf("iphone_redirect=false") == -1) window.location = "http://www.dakshinisen.com/mobile/index.htm";
}


if((navigator.userAgent.match(/android/i)) || (navigator.userAgent.match(/android/i))) {
	 if (document.cookie.indexOf("android_redirect=false") == -1) window.location = "http://www.dakshinisen.com/mobile/index.htm";
}


if((navigator.userAgent.match(/windows ce/i)) || (navigator.userAgent.match(/windows ce/i))) {
	 if (document.cookie.indexOf("windows ce_redirect=false") == -1) window.location = "http://www.dakshinisen.com/mobile/index.htm";
}

var deviceAndroid = "android";

//**************************
// Detects if the current device is an Android OS-based device.
function DetectAndroid()
{
   if (uagent.search(deviceAndroid) > -1)
      return true;
   else
      return false;
}


//**************************
// Detects if the current device is an Android OS-based device and
//   the browser is based on WebKit.
function DetectAndroidWebKit()
{
   if (DetectAndroid())
   {
     if (DetectWebkit())
        return true;
     else
        return false;
   }
   else
      return false;
}
 
 
var deviceWinMob = "windows ce";

//Initialize our user agent string to lower case.
var uagent = navigator.userAgent.toLowerCase();

//**************************
// Detects if the current browser is a Windows Mobile device.
function DetectWindowsMobile()
{
   if (uagent.search(deviceWinMob) > -1)
      return true;
   else
      return false;
}


