function candidati_list_get_filters(partid_id,candidat_nume,show_page,delete_id)
	{
	xmlHttp=GetXmlHttpObject()
	if (xmlHttp==null)
		{
		alert ("Browser does not support HTTP Request")
		return
		}
	document.getElementById("candidat_list").innerHTML="<tr><td colspan='7'><img src='images/loading.gif'/></td></tr>";
	var url="ajax/candidati_list_get_filters.php?partid_id="+partid_id+"&candidat_nume="+candidat_nume+"&show_page="+show_page+"&delete_id="+delete_id;

	xmlHttp.open("GET",url,true);
	xmlHttp.send(null);	
	xmlHttp.onreadystatechange=function()
		{
		if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete")
	 		{
			document.getElementById("candidat_list").innerHTML = xmlHttp.responseText;
			}
		}
	}

