
//wxcdÍ³¼Æ
 function getJoyesFootCookie(cookieName) 
    {
	var cookieString = document.cookie;
	var start = cookieString.indexOf(cookieName + '=');
	if (start == -1)
	return null;
	start += cookieName.length+1;
	var end = "";
	if(cookieString.indexOf('&', start)>-1&&cookieString.indexOf(';', start)>-1)
	{
		end =cookieString.indexOf('&', start)>cookieString.indexOf(';', start)?cookieString.indexOf(';', start):cookieString.indexOf('&', start); 
	}else
	{
	    end =cookieString.indexOf('&', start)>-1?cookieString.indexOf('&', start):cookieString.indexOf(';', start);
	}
	if (end == -1)
	{
	end = cookieString.indexOf(';', start);
	if (end == -1) return unescape(cookieString.substring(start));
	}
	return unescape(cookieString.substring(start, end));
    }
    //µ±Ç°URL
    var cururl = window.location;  
    var preurl = document.referrer;
    var ua = getJoyesFootCookie("mid")!=null?getJoyesFootCookie("mid"):"";  
    var sid = getJoyesFootCookie("UGID");
    if(sid==null||sid==0){sid=getJoyesFootCookie("HeadSID");}
    document.writeln('<DIV style="display:none;">');
    document.writeln('<iframe width=0 height=0 src="http://218.205.231.146:3068/jcs?cururl='+escape(cururl)+'&preurl='+escape(preurl)+'&ua='+ua+'&sid='+sid+'"></iframe>');
    document.writeln('</DIV>');    
