function fonload() {
	trbrow();
}
//functie pentru recuperare parola
function recuperare_parola() {
	var e=document.getElementById('addemail').value;
	if (e=='') {
		alert('Introdu adresa de email!');
	} else {
		var trim='';
		trim+='email='+e;
		Ejax('includes/ajax_php/recuperare_parola.php', trim, 'div_recuparere_pass');
		document.getElementById('addemail').value='';
	}
}
//functie resetare parola
function reseteaza_parola() {
	var i=document.getElementById('id').value;
	var c=document.getElementById('cod').value;
	var p=document.getElementById('newpass').value;
	var p2=document.getElementById('newpass2').value;
	if (p=='') {
		alert('Introdu noua parola!');
	} else {
		if (p2=='') {
			alert('Confirma parola!');
		} else {
			if (p!=p2) {
				alert('Parolele nu coincid!');
			} else {
				var trim='';
				trim+='id='+i;
				trim+='&cod='+c;
				trim+='&pas='+p;
				trim+='&pas2='+p2;
				Ejax('includes/ajax_php/resetare_parola.php', trim, 'div_resetpass');
				document.getElementById('newpass').value='';
				document.getElementById('newpass2').value='';
			}
		}
	}
}
//lasa comentariu la balta
function lasa_comentariu() {
	var com=document.getElementById('comentariu').value;
	if (com=='') {
		alert('Scrie un comentariu!');
	} else {
		var id=document.getElementById('id_balta').value;
		var trim='';
		trim+='id='+id;
		trim+='&com='+com;
	//	alert(trim);
		Ejax('includes/ajax_php/lasa_coment.php', trim, 'div_comentarii');
		document.getElementById('comentariu').value='';
		alert('Comentariu adaugat!');
	}
}
//add vot balta
function add_vot_balta(i,t) {
	var tip=t;
	var id=i;
	var trim=''
	trim+='id='+id;
	trim+='&tip='+tip;
	Ejax('includes/ajax_php/voteaza_balta.php', trim, '');
}
//lasa comentariu la postare
function lasa_comentariu_postare() {
	var com=document.getElementById('comentariu').value;
	if (com=='') {
		alert('Scrie un comentariu!');
	} else {
		var id=document.getElementById('id_postare').value;
		var tip=document.getElementById('tip_postare').value;
		var trim='';
		trim+='id='+id;
		trim+='&tip='+tip;
		trim+='&com='+com;
	//	alert(trim);
		Ejax('includes/ajax_php/lasa_coment_postari.php', trim, 'comentarii');
		document.getElementById('comentariu').value='';
		alert('Comentariu adaugat!');
	}
}
//add vot postare
function add_vot_postare() {
	var id=document.getElementById('id_postare').value;
	var tip=document.getElementById('tip_postare').value;
	var nota=document.getElementById('nota').value;
	var trim=''
	trim+='id='+id;
	trim+='&tip='+tip;
	trim+='&nota='+nota;
	Ejax('includes/ajax_php/voteaza_postare.php', trim, '');
}
function adauga_video() {
	var nume=document.getElementById('nume').value;
	if (nume=='') {
		alert('Introdu link-ul filmului!');
	} else {
		var trim='';
		trim+='nume='+escape(nume);
		Ejax('includes/ajax_php/adauga_video.php', trim, '');
		document.getElementById('nume').value='';
	}
}