//André Rafael Function

//   idOpcao 
// * 1 = Alerta
// * 0 = Não Alerta
//Exemplo de uso
//<input type="text" onKeyPress="return noNumber(0)">

function noNumber(iOpcao){
	if(isNaN(String.fromCharCode(window.event.keyCode))){
		if(iOpcao == 1){
			alert("Preencha apenas com caractéres numéricos");
			return false;
		}
	else 
		return false;
	}
}