// JavaScript Document
function SoloNumeros(e){
	key=(document.all)?e.keyCode:e.which;
	// NOTA: Backspace=8, Tabulador=0 Enter=13, '0' = 48, '9' = 57 
	if((key!=8 && key!=0 && key!=13) && (key < 48 || key > 57)){
		return false;
	}else{
		return true;
	}
}
function SoloFechas(e){
	key=(document.all)?e.keyCode:e.which;
	// NOTA: Backspace=8, Tabulador=0 Enter=13, '/' = 47, '0' = 48, '9' = 57 
	if((key!=8 && key!=0 && key!=13) && (key < 47 || key > 57)){
		return false;
	}else{
		return true;
	}
}
function MostrarEntitat(){
	if(document.inscripcions.entitat_si.checked==true){
		document.getElementById('entitat_nom').style.display='block';
	}else{
		document.getElementById('entitat_nom').style.display='none';
	}
}
function confirmar (mensaje) {
	return confirm (mensaje);
} 