function sendURL(title){
		var titleCode=encodeURI(encodeURI(title));
		var url = serverURL+"Services/GetArticle.jsp?Title="+titleCode;
		var jsObj = document.createElement( "script" ); 
		jsObj.type = "text/javascript" ; 
		jsObj.setAttribute( "src" , url); 
		document.body.appendChild(jsObj);

}

function getArticleParams(id,path){
	if(!path){
     alert("该营销员没有个人主页！");
     return;
	}
	window.open("http://www.cpic.com.cn/agent/"+path);
}
