 // Get the HTTP Object

      function getHTTPObject(){

      if (window.ActiveXObject) return new ActiveXObject("Microsoft.XMLHTTP");

      else if (window.XMLHttpRequest) return new XMLHttpRequest();

      else {


      return null;

      }

      }
      
      
function Function90(boxid,itemid) {
	
	
		 httpObject = getHTTPObject();
  
      if (httpObject != null) {
 
  	//scripturl="http://www.varzesh3.com/files/" + itemid + ".asp";
	scripturl="http://www.sportcloob.com/catch/gettable.php?table="+itemid;
	//scripturl="http://www.google.com";
	//alert(scripturl);
      httpObject.open("GET",scripturl , true);
      //document.getElementById('show-' + boxid).innerHTML += scripturl;
       httpObject.onreadystatechange = function() {  
       	 if(httpObject.readyState ==4){
       		//alert(scripturl);
                document.getElementById('show-' + boxid).innerHTML =  httpObject.responseText;
                //alert(scripturl);
				//document.getElementById('show-' + boxid).style.display = 'none';
            }
       }
       httpObject.send(null);
      }
	  


}
  
      var httpObject = null;
