// JavaScript Document
  function BloqueiaLetras()
	{
	  var tecla = window.event.keyCode;
	  tecla     = String.fromCharCode(tecla);
	  if ((tecla >= "a") && (tecla <= "z") )
	  {
		window.event.keyCode = 0;
	  }
	  if((tecla == "ç"))
	  {
        window.event.keyCode = 0;
	  }
	}
