function checkInput()
{
   if(document.getElementById("tbxUserName").value == "")
   {
     alert("请输入用户名!")
     
     return false;
   }
   
   else if(document.getElementById("tbxPwd").value == "")
   {
     alert("请输入密码!")
     
     return false;
   }
   
   else
   {
   return true;
   }
}

function getTitle(content,showCount)
{
  if(content.length > showCount)
  {
    document.write(content.substr(0,showCount) + "...");
  }
  
  else
  {
    document.write(content);
  }
}