// JavaScript Document
<!--
var strNav = navigator.userAgent;
// Check for Windows CE (Pocket PC, Palm-size PC, Handheld PC, Handheld PC Pro)
var isCE = strNav.indexOf("Windows CE");
if(isCE > -1)
{
window.location.href="http://www.spinelab.com/mobile/index.htm";
}
// Check for Pocket PC
var isPPC = strNav.indexOf("240x320");
if(isPPC > -1)
{
window.location.href="http://www.spinelab.com/mobile/index.htm";
}
// Check for sony
var isSO = strNav.indexOf("SonyEricsson");
if(isSO > -1)
{
window.location.href="http://www.spinelab.com/mobile/index.htm";
}
// Check for iPhone
var isIP = strNav.indexOf("iPhone");
if(isIP > -1)
{
window.location.href="http://www.spinelab.com/mobile/index.htm";
}
// Check for HTC
var isHTC = strNav.indexOf("Android");
if(isHTC > -1)
{
window.location.href="http://www.spinelab.com/mobile/index.htm";
}

-->
