// JavaScript Document
function cauta_stanga()
{
	var c_str = document.getElementById("c_rubrica").value;
	if (c_str==0)
     { 
     document.getElementById("c_categ").innerHTML="";
     return;
     }
     		
	 
xmlHttp = GetXmlHttpObject();
xmlHttp.onreadystatechange = function()
 {
	if(xmlHttp.readyState == 1)
	    {
			document.getElementById("c_categ").innerHTML = "<img src='../img/loaded.gif' />";
		}
	if(xmlHttp.readyState == 4)
	    {
			document.getElementById("c_categ").innerHTML = xmlHttp.responseText;
			
			//alert (xmlHttp.responseText);
			if(xmlHttp.status == 200) {
            // alert("The server said: " + xmlHttp.responseText);
             } else {
            // issue an error message for
            // any other HTTP response
            //alert("An error has occurred: " + xmlHttp.statusText);
            }

		}
	
 }
	var c_url="include/script_ajax.php";
    c_url=c_url+"?c_rubr="+c_str;
    xmlHttp.open("GET",c_url,true);
    xmlHttp.send(null);
}

