﻿function check_search_form(theForm)
{
 if(theForm.query.value=="")
 {
  alert("请输入检索关键词");
  return false;
 }
 else{
  theForm.action="http://search.southcn.com/cgi-bin/web.cgi";
  
  return true;
 }
}