// JavaScript Document
var posicioX_capaLoading = 0;
var control_galeria = false;

function netejaCerca(){
	document.getElementById("text_cerca").value = "";
}

function mostraEvent(id){
	document.location.href = "agenda.php?event="+id;
}

function mostraNoticia(id){
	document.location.href = "noticies.php?noticia="+id;
}

function posicionaCapaLoading(){
	var anchoNavegador = document.body.clientWidth;
		
	// posicionem la capa
	if(posicioX_capaLoading == 0)
		posicioX_capaLoading = (anchoNavegador/2) - 250;
	
	document.getElementById("capa_loading").style.left = posicioX_capaLoading+"px";
	
}

// funcio que comprova si la pagina actual es index.php (Portada)
function verifica(cadena){
	pat = /index.php/
	if(pat.test(cadena))
		return true
	else
		return false
}

// funcio per obrir el pop-up del dia
function obre_popup(direccion){
	//if(verifica(pagina)){
		var anchoNavegador = document.body.clientWidth;
		var left = (Math.round(anchoNavegador/2) - 300);
		var opciones = "fullscreen=false" +
					 ",toolbar=false" +
					 ",location=false" +
					 ",status=false" +
					 ",menubar=false" +
					 ",scrollbars=false" +
					 ",resizable=false" +
					 ",width=600" +
					 ",height=550" +
					 ",left=" + left +
					 ",top=140";
		var ventana = window.open(direccion,"popup",opciones);
	//}
}

// funcio per obrir el pop-up del banner de "Qui som?"
function popup_banner(){
	var anchoNavegador = document.body.clientWidth;
	var left = (Math.round(anchoNavegador/2) - 407);
	var opciones = "fullscreen=false" +
					 ",toolbar=false" +
					 ",location=false" +
					 ",status=false" +
					 ",menubar=false" +
					 ",scrollbars=false" +
					 ",resizable=false" +
					 ",width=815" +
					 ",height=515" +
					 ",left=" + left +
					 ",top=100";
	var ventana = window.open("popup_banner.php","popup",opciones);
}

// funcio per mostrar la capa oculta amb la galeria d'imatges
function mostra_galeria(){
	document.getElementById("capa_galeria").style.display = "block";
	document.getElementById("mostra_galeria").style.display = "none";
	document.getElementById("amaga_galeria").style.display = "block";
	control_galeria = false;
}

function amagar_galeria(){
	document.getElementById("capa_galeria").style.display = "none";
	document.getElementById("mostra_galeria").style.display = "block";
	document.getElementById("amaga_galeria").style.display = "none";
	control_galeria = false;
}

