
function art_ser_chk(form) {// ±â»ç°Ë»ö Æû Ã¼Å©
	search_value = form.search_value.value.length;
	if (search_value < 2) {
		alert("°Ë»ö¾î¸¦ 2ÀÚÀÌ»ó ÀÔ·ÂÇØ ÁÖ¼¼¿ä~!");
		form.search_value.focus();
		return false;
	}
	return true;
}


function popup_write(category) {
	var category;

	if (category == "jebo") {
		url = "/board/jebo_write.html";
		window.open(url, 'jebo_write', 'toolbar=no, status=no, menubar=no, scrollbars=no, resizable=no, width=550, height=700, top=100, left=100');
	} else if (category == "tugo") {
		url = "/board/tugo_write.html";
		window.open(url, 'tugo_write', 'toolbar=no, status=no, menubar=no, scrollbars=no, resizable=no, width=550, height=700, top=100, left=100');
	}
}



function input_click(obj) {
	if ("INPUT" == event.srcElement.tagName) {
		event.cancelBubble = true;
	} else {
		obj.children[0].click();
		return false;
	}
}



