function showPestanyaexposicions(id){
	
	if(document.getElementById('Ipestanya')== null){
		document.getElementById('IcontenidorInfo').innerHTML="<div id=\"Ipestanya\"></div>";
		canviarFonsSala(1);
	}
	
	document.getElementById('Ipestanya').style.backgroundImage = "url(fotosInfo/transparenciaSalaespera.jpg)";
	
	if(id==null)
		id = 0;
	xmlHttp = GetXmlHttpObject();
	if (xmlHttp==null)
	{
		alert ("Browser does not support HTTP Request");
		return;
	}
	var url = "getexposicions.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 iniciarExposicio(idexp,idfoto){
	
	canviarFonsSala(7);
	document.getElementById('IcontenidorInfo').style.borderBottom ="";
	
	if(idexp==null)
		idexp = 0;
	if(idfoto==null)
		idfoto = 0;
	if(idfoto==0)
		desc = "&desc=1";
	else
		desc = "&desc=0";
	
	xmlHttp = GetXmlHttpObject();
	if (xmlHttp==null)
	{
		alert ("Browser does not support HTTP Request");
		return;
	}

	var url = "getexposiciodetall.php";
	var params = "idexp="+idexp+"&idfoto="+idfoto+desc+"&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 fotoGranExposicio(id){	

	
	var x = document.getElementById('contenidorFoto');	
	
	x.innerHTML = "<div id=\"fotoCross\"><div align=\"right\"><a href=\"#\" onclick=\"tancarFoto()\" onmouseout=\"MM_swapImgRestore();\" onmouseover=\"MM_swapImage(\'Icons/botoCloseGaleria\',\'\',\'Icons/botoClose.gif',1);\"><img name=\"Icons/botoCloseGaleria\" src=\"Icons/botoCloseGaleria.gif\" alt=\"Tancar\" id=\"Icons/botoCloseGaleria.gif\" width=\"13\" height=\"13\" border=\"0\" /></a></div></div><img src=\"getfotoexp.php?id="+id+"\" />";
}

function showPestanyarobaicomplements(id){
	if(document.getElementById('Ipestanya')== null){
		document.getElementById('IcontenidorInfo').innerHTML="<div id=\"Ipestanya\"></div>";
		canviarFonsSala(1);
	}
	var pestanya = document.getElementById('Ipestanya');
	
	
	document.getElementById('Ipestanya').style.backgroundImage = "url(fotosInfo/transparenciaSalaespera.jpg)";	
	
		if(id==null)
		id = 0;
	xmlHttp = GetXmlHttpObject();
	if (xmlHttp==null)
	{
		alert ("Browser does not support HTTP Request");
		return;
	}
	var url = "getroba.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);
}
