function InfolexllcRate(contentId){
		var xmlhttp
		var xmlDOM; 
		var totalView=0;
		var totalComment=0;
		var html="";
		var pageNum=1;
		var url = 'http://life.truelife.com/common/template/rating.php?contentType=1&ratingValue=0&action=&userId=';
		init();
		
		function init(){
			url = url + '&contentId=' + contentId;
			loadXMLDoc();
		}

		function loadXMLDoc(){
			xmlhttp=null
			// code for Mozilla, etc.
			if (window.XMLHttpRequest){
				  xmlhttp=new XMLHttpRequest();
			}// code for IE
			else if (window.ActiveXObject){
				  xmlhttp=new ActiveXObject("Microsoft.XMLHTTP")
			}
			if (xmlhttp!=null) {
				xmlhttp.onreadystatechange=state_Change
				xmlhttp.open("GET",url,true)
				xmlhttp.send(null)
			}else{
				processFail();
			}
		}

		function state_Change(){			
			if (xmlhttp.readyState==4){
				if (xmlhttp.status==200){					
					html = xmlhttp.responseText;
					try{
						html = html.replace(/..\/..\/..\/..\//g,"http://life.truelife.com/");
					}catch(e){
						html="";
					}
					//alert(html);
					render();
				}else{
				    processFail();
				}
			}
		}

		function render(){
			var canvasComment = null;
			var canvasTotalView = null;
			var canvasTotalComment = null;
			canvasRate = document.getElementById("InfolexllcRate_Canvas");
			if (canvasRate != null)  canvasRate.innerHTML  = html;
		}

		function processFail(){
			totalView = 0;
			totalComment=0;
			html="";
			render();
		}


}
