function showPestanyaaromaterapia(){
	if(document.getElementById('Ipestanya')== null){
		document.getElementById('IcontenidorInfo').innerHTML="<div id=\"Ipestanya\"></div>";
		canviarFonsSala(2);
	}
	
	var pestanya = document.getElementById('Ipestanya');
	
	pestanya.style.background = "url(fotosInfo/transparenciaRentacaps.jpg) no-repeat top right";
	
	var id = 0;
	xmlHttp = GetXmlHttpObject();
	if (xmlHttp==null)
	{
		alert ("Browser does not support HTTP Request");
		return;
	}
	var url = "getaromaterapia.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 showPestanyaaccessibilitat(){
	if(document.getElementById('Ipestanya')== null){
		document.getElementById('IcontenidorInfo').innerHTML="<div id=\"Ipestanya\"></div>";
		canviarFonsSala(2);
	}
	var pestanya = document.getElementById('Ipestanya');
	
	pestanya.style.background = "url(fotosInfo/transparenciaRentacaps.jpg) no-repeat top right";	
	
	var id = 0;
	xmlHttp = GetXmlHttpObject();
	if (xmlHttp==null)
	{
		alert ("Browser does not support HTTP Request");
		return;
	}
	var url = "getaccessibilitat.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);
}