var xmlHttp

function alege_categoria(id) {
	xmlHttp=GetXmlHttpObject()
	if (xmlHttp==null) {
	  alert ("Browserul dvs nu suporta AJAX");
	  return;
	} 
	
	var url="ajax_prod.php";
	url=url+"?id="+id;
	url=url+"&sid="+Math.random();
	
	xmlHttp.onreadystatechange=stateChanged;
	xmlHttp.open("GET",url,true);
	xmlHttp.send(null);
} 

function stateChanged() { 
	if (xmlHttp.readyState!=4) { 	
		document.getElementById("produse_content").innerHTML="<br/><br/><div align=\"center\"><img alt=\"ajax_loader\" src=\"images/ajax-loader.gif\" style=\"vertical-align:middle;\"><br />Se incarca produsele .... </div><br/><br/>";
	}
	if (xmlHttp.readyState==4) { 
		document.getElementById("produse_content").innerHTML=xmlHttp.responseText;

		$(document).ready(function(){   
			tb_init('a.thickbox, area.thickbox, input.thickbox');//pass where to apply thickbox
			imgLoader = new Image();// preload image
			imgLoader.src = tb_pathToImage;
		});
	}
	
	
}


function GetXmlHttpObject() {
var xmlHttp=null;
	try {
	  xmlHttp=new XMLHttpRequest();
	} catch (e) {
	  try {
		xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
	  } catch (e) {
		xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
	  }
	}
	return xmlHttp;
}