// mascara numeros
function PermiteNumeros()
{
  var tecla = window.event.keyCode;
  tecla     = String.fromCharCode(tecla);
  if(!((tecla >= "0") && (tecla <= "9")))
  {
    window.event.keyCode = 0;
  }
}
//mascara de data
	 
	    function verifica_data(event, texto)
     {
   var numero;
   
   numero = /[0-9]/;

   if(numero.test(String.fromCharCode(event.keyCode)))
   {
       if((texto.value.length == 2) || (texto.value.length == 5))
       {
     texto.value = texto.value + "/";
       }
       return true;
   }
   else
   {
       return false;
   }
     }
	 
