/*********************
 * FUNCIONS RENUACC  *
 *********************/

function mostra(id){
	x = document.getElementById(id);
	x.style.display = 'block';
}

function amaga(id){
	x = document.getElementById(id);
	x.style.display = 'none';
}
