function soemail(){
if (document.all) // Internet Explorer
		var tecla = event.keyCode;
	else if(document.layers) // Nestcape
		var tecla = e.which;
		if ( tecla == 162 || tecla == 39 || tecla == 34 || tecla == 33 || tecla == 35 || tecla == 36 || tecla == 37 || tecla == 168 || tecla == 38 || tecla == 42 || tecla == 40 || tecla == 41 || tecla == 61 || tecla == 43 || tecla == 96 || tecla == 180 || tecla == 123 || tecla == 125 || tecla == 63 || tecla == 58 || tecla == 62 || tecla == 60 || tecla == 94 || tecla == 91 || tecla == 93 || tecla == 126 || tecla == 47 || tecla == 59 || tecla == 44 || tecla == 124 || tecla == 92 || tecla == 176 || tecla == 186 || tecla == 170 || tecla == 167 || tecla == 185 || tecla == 178 || tecla == 179 || tecla == 163 || tecla == 162 || tecla == 172 ){ // numeros de 0 a 9 , e todos os tipos de acentos fora de letras
			event.keyCode = 0;
			return false;
		}else{
			return true;
			}
}