//mobile redirect



var str = navigator.userAgent.toLowerCase();



//These are the current known deveice on the market





var mobilephone = "0"

var mobileDeviceNames = "ACER|Alcatel|AUDIOVOX|BlackBerry|CDM|Ericsson|iPhone|LG\/b|LGE|Motorola|MOT|NEC|Nokia|Panasonic|QCI|SAGEM|SAMSUNG|SEC|Sanyo|Sendo|SHARP|SIE-|SonyEricsson|Telit|Telit_mobile_Terminals|TSM|MMP|webOS|Android|Droid|HTC|mobile|Opera|Symbian"



 var findMobileAgent = mobileDeviceNames.split("|");





 for ( var i=findMobileAgent.length-1; i>=0; --i ){



 // alert(findMobileAgent[i].toLowerCase());

 if (str.indexOf(findMobileAgent[i].toLowerCase()) != -1 ){



    // alert("BLAH MOBILE TEST");




location.href='http://guamfreightservice.com/mobile';

 mobilephone = "1"



 }



 }//find mobile agent






