function select_choice_value() {
	return true ;

	var a1 = document.search.method.selectedIndex ;
	var a1_val = document.search.method.options[a1].value ;
	if (a1_val == "pn") {
		var key_v = document.search.key.value ;

		if(key_v.match(/^\d+$/ig) == null){
			alert("Á¦Ç°¹øÈ£´Â ¼ýÀÚ¸¸À» ÀÔ·ÂÇÏ½Ê½Ã¿À.") ;
			document.search.key.focus ();
			return false ;		//	¼ýÀÚ°¡ ¾Æ´Ï´Ù.. 
		}else{
			return true ;		//	¼ýÀÚ´Ù.. 
		}
	} else {
		document.search.action="/i_product/search_result.html" ;
		return true ;		//	¼ýÀÚ »ó°ü¾ø´Ù.. 
	}
}

function Search() {
	if (document.search.key.value == "") {
		alert("°Ë»ö¾î¸¦ ÀÔ·ÂÇÏ½Ê½Ã¿À.") ;
		document.search.key.focus ();
		return false ;
	} else {

		if (select_choice_value()) {
			return true ;
		} else {
			return false ;		//	¼ýÀÚ°¡ ¾Æ´Ï´Ù.. 
		}

	}
}

function pop_view_review_item(item_num) {
	var url_p = "/i_page/review_pop_start.php?num="+item_num ;

	win_check_pop = window.open(url_p, 'win_check_pop_1', 'resizable=yes,scrollbars=yes,width=780,height=800'); 
	win_check_pop.focus ();

}
