﻿function SearchTotal()
{
    var frm = document.forms[0];
    if (!CheckNull(frm["ctl00_topmenu_keyword"], "검색어을 입력하세요"))
    {
      return false;   
    }
    return true;
}


function objSearchBox() 
{
	this.objFrm = document.forms[0];
}

objSearchBox.prototype.setSection = function(text, value)
{
	var frm	= document.forms[0];
	frm["ctl00_topmenu_section"].value= value;
	document.getElementById("section_text").innerHTML=text;
	select.style.display='none';
}
	
var objSearch = new objSearchBox();


