 // JavaScript Document
function ajaxFunction(str1,str2,str3)
{
if (document.getElementById(str3).className == "off" ) {

	var xmlhttp;
	if (window.XMLHttpRequest)
		  {
		  // code for IE7+, Firefox, Chrome, Opera, Safari
		  xmlhttp=new XMLHttpRequest();
		  }
	else if (window.ActiveXObject)
		  {
		  // code for IE6, IE5
		  xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
		  }
		else
			  {
			  alert("Your browser does not support XMLHTTP!");
			  }
	xmlhttp.onreadystatechange=function() 
		  {
			if(xmlhttp.readyState==4)
			  {
			  document.getElementById(str1).innerHTML=xmlhttp.responseText;
			  }
		  }
	
	
	var url="http://www.parisport.ro/show_derivate.php"
	url=url+"?id_liga="+str1 
	url=url+"&ziua="+str2
	xmlhttp.open("GET",url,true);
	xmlhttp.send(null);

	document.getElementById(str3).className = "on" ;
		}

else { 
	document.getElementById(str3).className = "off" ;
	document.getElementById(str1).innerHTML = "" ;
	}
}


