
<!--


function handlePressNumber(e,intLanguage)
    {
      var whichCode = (window.Event) ? e.which : e.keyCode;
      if (intLanguage == 1) 
        {
          if (whichCode == 8)
            return true;
          if ((whichCode >= 48 && whichCode <= 57) )
		   {
		     return true;
			}
          else
		   {
		     alert("¡ÃØ³ÒãÊèµÑÇàÅ¢¤èÐ");		   
            return false;
			}
			
        }
		
    }
//-->

