//funciones javascript de uso comun

function isNumber(str) {
	if ((str)==(""+(str*1))) {
    	return true
	}
	return false;
}