function iniciarNoticies(id)
{
	var noticiesHTML;

	//document.getElementById('TcontenidorTop').innerHTML = "<div id=\"CantonadaLeftTop\"></div><div class=\"titleNoticies\"><p>Not&iacute;cies.<span class=\"actualitzacio\">  (&Uacute;ltima Actualitzaci&oacute; )</span></p></div></ul><div id=\"CantonadaRightTop\"></div>";
	menuHoritzontal('reportatges','','','','','','','','','','','',4,1);
	//selecciona(4,'mv',6);
	canviarFonsSala(4);
	//insertarGaleries(4);
	document.getElementById('IcontenidorInfo').style.borderBottom ="1px solid #666666";	
	
	if(id==null)
		id = 0;
	xmlHttp = GetXmlHttpObject();
	if (xmlHttp==null)
	{
		alert ("Browser does not support HTTP Request");
		return;
	}
	var url = "getnoticies.php";
	var params = "id="+id+"&sid="+Math.random();
	xmlHttp.onreadystatechange = function()
	{
		if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete")
		{
			document.getElementById("IcontenidorInfo").innerHTML=xmlHttp.responseText;
		}
	}
	xmlHttp.open("POST",url,true);
	xmlHttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
	xmlHttp.send(params);
}

function showPestanyareportatges(id)
{
	if(document.getElementById('Ipestanya')== null){
		document.getElementById('IcontenidorInfo').innerHTML="<div id=\"Ipestanya\"></div>";
		canviarFonsSala(4);
	}
	var pestanya = document.getElementById('Ipestanya');
	
	pestanya.style.background = "url(fotosInfo/transparenciaNoticies.jpg) no-repeat top right";
	
	if(id==null)
		id = 0;
	xmlHttp = GetXmlHttpObject();
	if (xmlHttp==null)
	{
		alert ("Browser does not support HTTP Request");
		return;
	}
	var url = "getreportatges.php";
	var params = "id="+id+"&sid="+Math.random();
	xmlHttp.onreadystatechange = function()
	{
		if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete")
		{
			document.getElementById("Ipestanya").innerHTML=xmlHttp.responseText;
		}
	}
	xmlHttp.open("POST",url,true);
	xmlHttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
	xmlHttp.send(params);	
}

function iniciarReportatge(idrep,idpagina){
	
	canviarFonsSala(4);
	
	if(idrep==null)
		idrep = 0;
	if(idpagina==null)
		idpagina = 0;
	
	xmlHttp = GetXmlHttpObject();
	if (xmlHttp==null)
	{
		alert ("Browser does not support HTTP Request");
		return;
	}
	
	var url = "getreportatgedetall.php";
	var params = "idrep="+idrep+"&idpagina="+idpagina+"&sid="+Math.random();
	xmlHttp.onreadystatechange = function()
	{
		if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete")
		{
			document.getElementById("IcontenidorInfo").innerHTML=xmlHttp.responseText;
		}
	}
	xmlHttp.open("POST",url,true);
	xmlHttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
	xmlHttp.send(params);
}

function tancarFotoN(){
	var contenidor =	document.getElementById('contenidorFotoNoticia');
	var textHTML="";
	contenidor.innerHTML = textHTML;
	

}

