//*****************************************************
function valid_searcher(){

 if(  document.Search.word.value.length==0 || document.Search.word.value=="请输入关键字")
    {window.alert("对不起，关键字不能为空！");
       document.Search.word.focus();
       return false;
      } ;
 if(  document.Search.word.value.length>31  )
    {window.alert("对不起，关键字不能超过 30 个字符！");
       document.Search.word.focus();
       return false;
      } ;
}
//选择文本框的内容是否需要自动复制到剪切板上
//Applies only to IE 4+
//0=no, 1=yes
var copytoclip=1

function HighlightAll(theField) {
var tempval=eval("document."+theField)
tempval.focus()
tempval.select()
if (document.all&&copytoclip==1){
therange=tempval.createTextRange()
therange.execCommand("Copy")
window.alert('复制成功，现在您可以粘贴到任何地方！')
setTimeout("window.status=''",1800)
}
}