document.onkeypress=teclas
function teclas(elEvento){
	var evento = elEvento || window.event
	var tecla = evento.keyCode ? evento.keyCode : evento.which ? evento.which : evento.charCode;
	var obj = evento.target || event.srcElement
	if(tecla=='34'){return false;}; // comillas
	if(tecla=='39'){return false;}; // apostrofes
	if(tecla=='39'){return false;}; // apostrofes
	if(tecla=='92'){return false;}; // barra invertida

	if(obj.className=="num"){

		if(!(tecla > 47 && tecla < 58 || tecla == 8 || tecla == 13 || tecla == 9 || tecla == 46)) {
			if(window.event){
				event.returnValue = false;
			} else {
				evento.preventDefault();
			}
		}
	}
}
