
function afiseazaStireIntreaga(idStire){
		$(document).ready(function(){
			//$(".tabelLogin").hide();
		});
	var xmlhttp;
	if (window.XMLHttpRequest){xmlhttp=new XMLHttpRequest();}
	else{xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");}
	xmlhttp.onreadystatechange=function(){
	if (xmlhttp.readyState==4 && xmlhttp.status==200){
	document.getElementById("continut").innerHTML=xmlhttp.responseText;}}
	xmlhttp.open("POST","stire.php",true);xmlhttp.setRequestHeader("Content-type","application/x-www-form-urlencoded");
	xmlhttp.send("idStire="+idStire);
}

function afiseazaDescriereMaterial(idMaterial,sectie,divv,numF){
	var director="";
	switch(sectie){
		case 'Vara_Impreuna':
			director="vara_impreuna";	
		break;
		case 'Resurse_Oratoriu':
			director="resurse_oratoriu";		
		break;
		case 'Programe':
			director="programe";		
		break;
		case 'Prezentari':
			director="prezentari";		
		break;
	}
	
	var nf=document.getElementById(numF).innerHTML;
	$(document).ready(function(){
		$("#"+divv).slideToggle("slow");
		var xmlhttp;
		if (window.XMLHttpRequest){xmlhttp=new XMLHttpRequest();}
		else{xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");}
		xmlhttp.onreadystatechange=function(){
		if (xmlhttp.readyState==4 && xmlhttp.status==200){
		document.getElementById(divv).innerHTML=xmlhttp.responseText;}}
		xmlhttp.open("POST","./resurse/"+director+"/getInfoFile.php",true);xmlhttp.setRequestHeader("Content-type","application/x-www-form-urlencoded");
		xmlhttp.send("numeFisier="+nf);
	});

}

