function sobre(elto,color){
		elto.style.background=color;
		elto.style.cursor="hand";
	}

	
function fuera(elto,color){
	elto.style.background=color;

}


function es_numerico(texto){
	caracteres_validos="1234567890";
	for (k=0;k<texto.length;k++){
		tmp=texto.substr(k,1);
		if (caracteres_validos.search(tmp)=="-1"){
			return false;
		}
	}
	return true;
}	
