// JavaScript Document
function checkSearchInspire(){
  keyword = document.getElementById('keyword').value; 
  cat_id = document.getElementById('cat_id').value; 
  if(keyword =="" && cat_id =="0"){
	  alert("กรุณาระุบุคีเวิร์ดหรือประเภทบทความที่ต้องการค้นหาด้วยค่ะ");
	  document.getElementById('keyword').focus();
	  return false;
  }
}
