function isPDA()
{
   var agt = navigator.userAgent.toLowerCase();
   return (agt.indexOf("windows ce") > 0)
      || (agt.indexOf("palmos") > 0)
      || (agt.indexOf("palmsource") > 0)
      || (agt.indexOf("netfront") > 0)
      || (agt.indexOf("mobile") > 0)
      || (agt.indexOf("nokia") > 0)
      || (agt.indexOf("symbian os") > 0)
      || (agt.indexOf("ppc;") > 0)
      || (agt.indexOf("blackberry") > 0)
      || (agt.indexOf("hiptop") > 0);
}
if (isPDA())
{
   proceed = false;
   window.location.replace("/login_pda.wssp");
}
