// JavaScript Document
function killErrors() { 
return true; 
} 
window.onerror = killErrors; 

function showLay(divId){
var objDiv = eval(divId);
if (objDiv.style.display=="none"){
	eval("sp"+divId+".innerHTML='&nbsp;'");
	objDiv.style.display="";
}else{
	eval("sp"+divId+".innerHTML='&nbsp;'");
	objDiv.style.display="none";
	}
}

function MM_openBrWindow(theURL,winName,features) { 
  window.open(theURL,'', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=yes,width=600,height=540');
}

function CheckData(theform)
{
  if(theform.keyword.value=="")
  {
	  alert("Please Input Keyword!");
	  return false;
  }
  return true;
}
