// JavaScript Document
//站内搜索
function searcheck(){
	if(document.formSear.keys.value==""){
		alert("请输入关键词后再进行查询！");
		document.formSear.keys.focus();
		return false
	}
}


//预载图象
(new Image()).src="images/human/close.gif";
function remarks(object,myImg){
   if(document.all[object].style.display=="block"){
      document.all[object].style.display="none";
   }else{
      document.all[object].style.display="block";
  }
  if(myImg.src=='images/human/look.gif'){
	  myImg.src="images/human/close.gif";
   }else{
      myImg.src="images/human/look.gif";
   }
}

 //弹出窗口函数
function eshionWin(file,w,h){
   window.open(file,'','resizable=yes,width='+w+",height="+h+',scrollbars=yes,left='+(screen.availWidth-w)/2+',top='+(screen.availHeight-h)/2);
}