//锁定小键盘   
function SetTextBoxFromatYear(objTextBox)   
{   
   var key=window.event.keyCode;   
   
   if((key>=48 && key<=57) || key==8)   
   {    
   event.returnValue=true;  
   }   
   else   
   {   
  document.all(objTextBox).focus();  
  event.returnValue=0;  
   }   
   return true;   
}