/***** _admin functions *****/
function getSubcategorii (id_categorie) {
	$('#subcategorie').load('include/getSubcategorii.php?id_categorie=' + id_categorie, function() {
		//alert("Test");
	});
}
function sterge_poza(id_poza) {
	document.getElementById("poza" + id_poza).innerHTML = '<img src="../_admin/images/no-picture.jpg" width="128px" height="128px" alt="no-picture" style="margin: 2px 10px; border: 1px dashed #CCC;" /><input type="hidden" name="poza-stearsa' + id_poza + '" value="1" />';	
}
/***** end _admin functions *****/




/***** Front End functions *****/
function sterge_produs(id_produs) {	
	var newTotal = document.getElementById("total").innerHTML - document.getElementById("pret_total_" + id_produs).innerHTML;
	document.getElementById('total').innerHTML = newTotal;
	
	$('#id_'+id_produs).remove();
	$(document).load('include/stergeProdus.php?id_produs=' + id_produs);
}
/***** end Front End functions *****/

/***** Comanda functions *****/
var xmlHttp = new Array();
var url;

function GetXmlHttpObject() {
	var xmlHttp=null;
	
	 // Firefox, Opera 8.0+, Safari
	try { xmlHttp=new XMLHttpRequest();	}
	
	// Internet Explorer
	catch (e){
 		try{ xmlHttp=new ActiveXObject("Msxml2.XMLHTTP"); }
 		catch (e){ xmlHttp=new ActiveXObject("Microsoft.XMLHTTP"); }
 	}
	return xmlHttp;
}

function stateChanged(id){
	if ( xmlHttp[id].readyState < 4 ) 
	{ document.getElementById("localitati").innerHTML='<img src="images/loader.gif" width="16px" height="16px" alt="loader" />'; }
	if ( xmlHttp[id].readyState == 4 ) 
	{ document.getElementById("localitati").innerHTML=xmlHttp[id].responseText; }
}

function adauga_localitati(id_judet){

	xmlHttp[1]=GetXmlHttpObject(); 
	
	url="include/getLocalitati.php";
	url=url+"?id_judet="+id_judet;
	
	xmlHttp[1].onreadystatechange=function () { stateChanged(1); };
	xmlHttp[1].open("GET",url,true);
	xmlHttp[1].send(null);	
}
/***** end Comanda functions *****/
