// JavaScript Document
//搜索关键词
function CheckSearchKeyWord()
{
  if (document.SearchForm.SearchKeyWord.value=="" ||  document.SearchForm.SearchKeyWord.value=="请输入搜索关键词" )
  {
    alert("请输入搜索关键词！");
	document.SearchForm.SearchKeyWord.focus();
	return false;
  }
  return true;  
}
