
function chequeoNumyPunto(valor) {

	if (valor == 46) {
		return(true);

	};

	if (valor > 31 && (valor < 48 || valor > 57)) {
		return(false);
	}
	return(true);

}

//*****************************************************************************************

function chequeoNum(valor) {

	if (valor > 31 && (valor < 48 || valor > 57)) {
		return(false);
	}
	return(true);
}

//*****************************************************************************************

function chequeoNumyBarra(valor) {

	if (valor == 47) {
		return(true);

	};

	if (valor > 31 && (valor < 48 || valor > 57)) {
		return(false);
	}
	return(true);

}

//*****************************************************************************************
//*****************************************************************************************
//*****************************************************************************************
//*****************************************************************************************
//*****************************************************************************************
//*****************************************************************************************
//*****************************************************************************************