function Mostrar(){
	mostrar=document.getElementById("socio_si");
	if(mostrar.checked==true){
		document.getElementById('div-socio').style.display='inline';
	}else{
		document.getElementById('div-socio').style.display='none';
	}
}

function Mostrar2(){
	mostrar=document.getElementById("entrada_si");
	if(mostrar.checked==true){
		document.getElementById('div-entrada').style.display='inline';
	}else{
		document.getElementById('div-entrada').style.display='none';
	}
}

function hideMe(){
	document.getElementById('theLayer').style.visibility='hidden';
}