// JavaScript Document
function MostrarFederat(){
	if(document.form_contactar.federat_si.checked==true){
		document.getElementById('lbl_num_llicencia').style.fontWeight='bold';
		document.getElementById('num_llicencia').style.borderColor='#999';
		document.getElementById('lbl_num_llicencia').style.display='block';
		document.getElementById('num_llicencia').style.display='block';
	}else{
		document.getElementById('lbl_num_llicencia').style.fontWeight='normal';
		document.getElementById('num_llicencia').style.borderColor='#CCC';
		document.getElementById('lbl_num_llicencia').style.display='none';
		document.getElementById('num_llicencia').style.display='none';
	}
}
function MostrarClub(){
	if(document.form_contactar.club_si.checked==true){
		document.getElementById('lbl_nom_club').style.fontWeight='bold';
		document.getElementById('nom_club').style.borderColor='#999';
		document.getElementById('lbl_nom_club').style.display='block';
		document.getElementById('nom_club').style.display='block';
	}else{
		document.getElementById('lbl_nom_club').style.fontWeight='normal';
		document.getElementById('nom_club').style.borderColor='#CCC';
		document.getElementById('lbl_nom_club').style.display='none';
		document.getElementById('nom_club').style.display='none';
	}
}
function ValidaFederat(el){
	if(document.form_contactar.federat_no.checked==true){
		el.errors=[];
		el.isOk=true;
		return true;
	}
}	
function ValidaClub(el){
	if(document.form_contactar.club_no.checked==true){
		el.errors=[];
		el.isOk=true;
		return true;
	}
}	

function confirmar (mensaje) {
	return confirm (mensaje);
} 
