// JavaScript Document
function validaNumerosOnKey(param1)
{        
   var re=/[0-9-()]/;
   p=new String(param1.value);
   valor=p.substring(p.length-1,p.length);        
   if(!re.test(valor) || isNaN(valor))
   {
		   param1.value=p.substring(0,p.length-1);
   }
}