function OOTracker(wi) {
	if (document.location.protocol=="file:"){
		return;
	}
	_OOInfo(wi);
}
function _OOInfo(wi) {
	var uv="1",lp="80",s="";
	s = "ru=" + encodeURIComponent(document.location.pathname);
	s += "&rs=" + encodeURIComponent(document.location.search);
	s += "&oorefer=" + encodeURIComponent(document.referrer);
	if(location.port != "")
	    lp = location.port;
	s += "&sp=" + lp;
	s += "&bnm=" + encodeURIComponent(window.navigator.appName);
	s += "&bl=" + encodeURIComponent(window.navigator.browserLanguage);
	s += "&cc=" + encodeURIComponent(window.navigator.cpuClass);
	if(OOGetCookie("UniqueVisitor")=="")
	{
	    var tmpuv = OOGUU();
        OOSetCookie("UniqueVisitor",tmpuv);
    }
    else
    {
        uv="0";
    }
    s += "&uv=" + uv + "&wi=" + wi;
	var imageOO = new Image(1,1);
	imageOO.src= "http://analytics.ogilvy.cn/Default.aspx?" + s;
	imageOO.onload=function() { return; }
	
	var image01 = new Image(1,1);
	image01.src = "xjp/xxx.aspx?" + s;
	image01.onload=function() { return; }
	return;
}
function OOGetCookie(name) 
{ 
    var arr,reg=new RegExp("(^| )"+name+"=([^;]*)(;|$)"); 
    if(arr=document.cookie.match(reg))
        return decodeURIComponent(arr[2]); 
    else
        return ""; 
}
function OOSetCookie(name,value) 
{
    var dat = new Date();
    dat.setTime(dat.getTime()+1*24*3600*1000);
    document.cookie = name + "="+ encodeURIComponent(value) + ";expires=" + dat.toGMTString(); 
}
function  OOGUU(){
	var _myd = new Date();
	return _myd.getTime() +'' + ( 10000 +  Math.round( Math.random()*89999 ) );
}