
//在文本框中按下回车按钮自动提交
function SubmitKeyClick(button) 
{    
   if (event.keyCode == 13) 
   {
       document.getElementById(button).focus();
   }
}

