//验证用户登陆
function login_check()
 {

 if (document.login.username.value==""){
  alert("-请输入用户名-");
  document.login.username.focus();
  return false;
 }
  if (document.login.password.value==""){
  alert("-请输入登陆密码-");
  document.login.password.focus();
  return false;
 }
 }
 function search_check(){
 if (document.theForm.key.value=="职位/企业关键字"){
  alert("-请输入职位/企业关键字-");
  document.theForm.key.focus();
  return false;
 }
 }
 