function showPestanyaproductes(id)
{
	if(document.getElementById('Ipestanya')== null){
		document.getElementById('IcontenidorInfo').innerHTML="<div id=\"Ipestanya\"></div>";
		canviarFonsSala(3);
	}
	var pestanya = document.getElementById('Ipestanya');
	
	pestanya.style.background = "url(fotosInfo/transparenciaZonapelu.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 = "getproductes.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 showPestanyagaleriapentinats(id)
{
	if(document.getElementById('Ipestanya')== null){
		document.getElementById('IcontenidorInfo').innerHTML="<div id=\"Ipestanya\"></div>";
		canviarFonsSala(3);
	}
	var pestanya = document.getElementById('Ipestanya');
	
	pestanya.style.background = "url(fotosInfo/transparenciaZonapelu.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 = "getgaleries.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 iniciarGaleria(idgal,idfoto){
	
	canviarFonsSala(6);
	
	if(idgal==null)
		idgal = 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 = "getgaleriadetall.php";
	var params = "idgal="+idgal+"&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 fotoGranGaleria(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=\"getfotogal.php?id="+id+"\" />";
}

function tancarFoto(){
	
	document.getElementById('contenidorFoto').innerHTML ="";
	
}