	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);
	      	}
    	}
  	}