	var xmlHttp;
	var tdtagId;	
	var showID;
	function createXMLHttpRequest() {
   		if (window.XMLHttpRequest) { // Non-IE browsers
      		xmlHttp = new XMLHttpRequest();
      	}else if (window.ActiveXObject) { // IE
      		xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
      	}
   	}
   	function getMatchDesc(url ,showID){	 
		this.showID = showID;
	   	createXMLHttpRequest();
	   	xmlHttp.onreadystatechange = processStateChange;
	   	xmlHttp.open("GET",url,true);
	   	xmlHttp.send(null);
    }
    function processStateChange(){  
  	  	if (xmlHttp.readyState == 4) { // Complete
	      	if (xmlHttp.status == 200){ // OK response		         
		    	document.getElementById(showID).innerHTML = xmlHttp.responseText;
	      	} else {
	        	alert("Problem with server response:\n " + xmlHttp.statusText);
	      	}
    	}
  	}
function sendVote()
{
   var new_script=document.createElement("div");
   new_script.src="http://adsite3.rayli.com.cn/RayliAD1.0Test/index.php/users/setVote/1708210/"+Math.random();
   document.getElementsByTagName("BODY")[0].appendChild(new_script);
}
