
var client=new function(){
this.mobile_clients=[
"midp",
"240x320",
"blackberry",
"netfront",
"nokia",
"panasonic",
"portalmmm",
"sharp",
"sie-",
"sonyericsson",
"symbian",
"windows ce",
"benq",
"mda",
"mot-",
"opera mini",
"philips",
"pocket pc",
"sagem",
"samsung",
"sda",
"sgh-",
"vodafone",
"xda",
"iphone",
"android",
"webos"
];
this.chk_is_mobile_client=function(user_agent){
user_agent=user_agent.toLowerCase();
for(var i in this.mobile_clients){
if(user_agent.indexOf(this.mobile_clients[i])!=-1){
return true;
}
}
return false;
};
this.smartphone_clients=[
"iphone",
"ipod",
"android",
"webos"
];
this.chk_is_smartphone_client=function(user_agent){
user_agent=user_agent.toLowerCase();
for(var i in this.smartphone_clients){
if(user_agent.indexOf(this.smartphone_clients[i])!=-1){
return true;
}
}
return false;
};
};
