/*
$(document).ready(function() {
	$('.wg-main td:first-child').css('width','120px');
	$('.wg-main td:first-child').css('text-align','center');

});

function check_submit(){
	var x= document.form_comanda;

	if(x.cui_cif_cnp.value.length < 3) {
		alert("Completati CUI / CIF / CNP corect!");
		x.cui_cif_cnp.focus();
		return false;
	}
	
	if(x.nume_solicitant.value.length < 3) {
		alert("Completati nume / prenume solicitant corect!");
		x.nume_solicitant.focus();
		return false;
	}
	
	if(x.mail.value.length < 3) {
		alert("Completati adresa de mail corect!");
		x.mail.focus();
		return false;
	}
	
	if(x.mail.value!==x.mail2.value) {
		alert("Confirmati adresa de mail corect!");
		x.mail.focus();
		return false;
	}
	
	return true;
}
*/
var xmlHttp = new Array();
var url

function GetXmlHttpObject()
{
var xmlHttp=null;
try
 {
 // Firefox, Opera 8.0+, Safari
 xmlHttp=new XMLHttpRequest();
 }
catch (e)
 {// Internet Explorer
 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-bar-blue.gif">';
	}
	if (xmlHttp[id].readyState==4){ 
		document.getElementById("localitati").innerHTML=xmlHttp[id].responseText;
	}

}

function adauga_localitati(judet){

	xmlHttp[1]=GetXmlHttpObject(); 
	
	url="include/get-localitati.php";
	url=url+"?judet="+judet;
	
	xmlHttp[1].onreadystatechange=function () { stateChanged('1'); };
	xmlHttp[1].open("GET",url,true);
	xmlHttp[1].send(null);	
}


function admin_adauga_localitati(judet){

	xmlHttp[1]=GetXmlHttpObject(); 
	
	url="get-localitati-admin.php";
	url=url+"?judet="+judet;
	
	xmlHttp[1].onreadystatechange=function () { stateChanged('1'); };
	xmlHttp[1].open("GET",url,true);
	xmlHttp[1].send(null);
	
}

