// JavaScript Document
function contacte(){
	var url = location.href;
	
	variables = url.split("=");
	
	if(variables[1]=='ok'){
		alert('missatge rebut!\n\ngracies per contactar amb l\'equip de www.fesneu.cat\n\n\n');
	}
	if(variables[1]=='fallit'){
		alert('no hem rebut el missatge per problemes tecnics\n\ndisculpeu les molesties\n\n\n');
	}
}

function contacte_copia(){
	var url = location.href;
	
	variables = url.split("=");
	
	if(variables[1]=='fallit'){
		alert('ATENCIO: Comprovar direccio e-mail !!\n\nNo hem pogut enviar el missatge.\n\n\n');
	}
}

function para_rss(){
	var m=document.getElementById("marq_rss");
	m.scrollAmount=0;
}

function mou_rss(){
	var m=document.getElementById("marq_rss");
	m.scrollAmount=1;
}

function para_links(){
	var m=document.getElementById("marq_links");
	m.scrollAmount=0;
}

function mou_links(){
	var m=document.getElementById("marq_links");
	m.scrollAmount=1;
}

function visible(){
	var m=document.getElementById('marq_rss');
		m.style.visibility='visible';
	var n=document.getElementById('marq_links');
		n.style.visibility='visible';
}

