// JavaScript Document

/*********ÅÐ¶Ïä¯ÀÀÆ÷********/
document.domain = "cctime.com";
var browser={    
versions:function(){            
	var u = navigator.userAgent, app = navigator.appVersion;            
	return {
		mobile: u.indexOf('Mobile') > -1,
		ios: !!u.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/),
		android: u.indexOf('Android') > -1 || u.indexOf('Linux') > -1,
		iPhone: u.indexOf('iPhone') > -1 || u.indexOf('Mac') > -1,
		iPad: u.indexOf('iPad') > -1
	};
}()
} 

function HbrowserCheck(t){
	if(browser.versions.mobile){
		if(t.indexOf("/htm")>0){
			var a=t.lastIndexOf("/");
			var b=t.indexOf(".htm");
			var m=t.substring(a+1,b);
			window.location = 'http://www.cctime.com/m/'+m+'.htm';
		}
		
	}
} 
/*******************************************/