﻿/**
*form.query		: search_value
*form.loc	: search_type
*/
function fnSearchAction(form){
	if (form.query.value == '') {
		alert('검색어를 입력해주세요.');
		form.query.focus();
		return false;
	}

	return true;
}

function fnSearchType(form, val){
	form.loc.value == val;
}

function fnSearchAutoAction(form, val){
	if (val != '' && val != null) {
		form.query.value = val;
		form.loc.value == '';
		form.submit();
	}
}
