﻿// JavaScript Document
//////////////////////////////////////////////////////////////////////////////
//判断客户浏览器类型
//////////////////////////////////////////////////////////////////////////////
function getBrowser() { 
	var OsObject = ""; 
    if(navigator.userAgent.indexOf("MSIE")>0) { 
		return "MSIE";  
    } 
    if(isFirefox=navigator.userAgent.indexOf("Firefox")>0){ 
         return "Firefox"; 
    } 
    if(isSafari=navigator.userAgent.indexOf("Safari")>0) { 
         return "Safari"; 
    }  
    if(isCamino=navigator.userAgent.indexOf("Camino")>0){ 
         return "Camino"; 
    } 
    if(isMozilla=navigator.userAgent.indexOf("Gecko/")>0){ 
         return "Gecko"; 
    } 

}
//////////////////////////////////////////////////////////////////////////////
//判断客户端进行跳转
//////////////////////////////////////////////////////////////////////////////
var bForcepc = fGetQuery("dv")== "pc"; 
function fBrowserRedirect(){ 
  var sUserAgent = navigator .userAgent.toLowerCase(); 
  var bIsIpad = sUserAgent .match(/ipad/i) == "ipad";  
  var bIsIphoneOs = sUserAgent .match(/iphone os/i) == "iphone os"; 
  var bIsMidp = sUserAgent .match(/midp/i) == "midp"; 
  var bIsUc7 = sUserAgent .match(/rv:1.2.3.4/i) == "rv:1.2.3.4"; 
  var bIsUc = sUserAgent .match(/ucweb/i) == "ucweb"; 
  var bIsAndroid = sUserAgent .match(/android/i) == "android"; 
  var bIsCE = sUserAgent .match(/windows ce/i) == "windows ce"; 
  var bIsWM = sUserAgent .match(/windows mobile/i) == "windows mobile"; 
  if(bIsIpad){ 
    var sUrl = location .href;   
    if(!bForcepc){  
	  //alert("Ipad")
	  //window.location.href="http://ipad.lemo-ta.cc";
//window.location.href="http://www.lemo-ta.cc";
    } 
  } 
  if(bIsAndroid){ 
    var sUrl = location .href;   
    if(!bForcepc){ 
	  //alert("Android")
	  //window.location.href="http://android.lemo-ta.cc";
//window.location.href="http://www.lemo-ta.cc";
    } 
  } 
  if(bIsIphoneOs){ 
    var sUrl = location .href;   
    if(!bForcepc){ 
	  //alert("Iphone")
	  //window.location.href="http://iphone.lemo-ta.cc";
//window.location.href="http://www.lemo-ta.cc";
    } 
  } 
  if(bIsMidp||bIsUc7||bIsUc||bIsCE||bIsWM){ 
    var sUrl = location .href;   
    if(!bForcepc){ 
      //alert("WM")
	  //window.location.href="http://mobile.lemo-ta.cc";
//window.location.href="http://www.lemo-ta.cc";
    } 
  } 

} 
function fGetQuery(name){//获取参数值 
  var sUrl = window .location.search.substr(1); 
  var r = sUrl .match(new RegExp("(^|&)" + name + "=([^&]*)(&|$)")); 
  return (r == null ? null : unescape(r[2])); 
} 
//function fShowVerBlock(){   
//  if(bForcepc){ 
//    document.getElementById("dv_block").style.display = "block" ; 
//  } 
//  else{ 
//    document.getElementById("ad_block").style.display = "block" ; 
//  } 
//} 
fBrowserRedirect(); 
