
<!--
// 2006.05.08 ¼öÁ¤, Ä¿¹Â´ÏÆ¼¿Í ÀÌ¹ÌÁö °Ë»ö Á¦°Å
	function searchCheck(form){
		var val1 = form.kwd.value;
		if (CheckStr(val1, " ", "")==0 || val1 == "°Ë»ö¾î¸¦ ÀÔ·ÂÇØÁÖ¼¼¿ä.")
		{
			alert("°Ë»ö¾î¸¦ ÀÔ·ÂÇØÁÖ¼¼¿ä.");
			return false;
		}
		else
		{
			form.action = "http://healthcare.joins.com/search/health_search_result.asp";
			form.submit();
		}
	}

	//Á¤·Ä
	function sort_sc(col, tmp) {
		if (col == 'news'){
			sort_search.action = "http://find.joins.com/search_result_news01.asp";
			sort_search.news_sort.value = tmp;
		}else if  (col == 'jua'){
			sort_search.action = "http://find.joins.com/search_result_news03.asp";
			sort_search.jua_sort.value = tmp;
		}else if  (col == 'magazine'){
			sort_search.action = "http://find.joins.com/search_result_magazine01.asp";
			sort_search.magazine_sort.value = tmp;
		}else if  (col == 'blog'){
			sort_search.action = "http://find.joins.com/search_result_blog01.asp";
			sort_search.Bbbs_sort.value = tmp;
			sort_search.Cbbs_sort.value = tmp;
		}else if  (col == 'trip'){
			sort_search.action = "http://find.joins.com/search_result_trip01.asp";
			sort_search.trip_sort.value = tmp;
			sort_search.tripFood_sort.value = tmp;
		}else if  (col == 'comm'){
			sort_search.action = "http://find.joins.com/search_result_community01.asp";
			sort_search.trend_gongjak_sort.value = tmp;
			sort_search.trend_nanjang_sort.value = tmp;
		}else if  (col == 'people'){
			sort_search.action = "http://find.joins.com/search_result_people01.asp";
			sort_search.people_sort.value = tmp;
		}else if  (col == 'woman'){
			sort_search.action = "http://find.joins.com/search_result_woman01.asp";
			sort_search.woman_sort.value = tmp;
		}
		sort_search.submit();
	}

	// Á¦¸ñ¸¸
	function title_sc(col, tmp) {
		if (col == 'news'){
			title_search.action = "http://find.joins.com/search_result_news01.asp";
			title_search.news_title.value = tmp;
		}else if  (col == 'magazine'){
			title_search.action = "http://find.joins.com/search_result_magazine01.asp";
			title_search.magazine_title.value = tmp;
		}		
		title_search.submit();
	}

	// Ä«Å×°í¸®1 (source)
	function source_sc(col, tmp) {
		if (col == 'news'){
			source_search.action = "http://find.joins.com/search_result_news02.asp";
			source_search.news_source.value = tmp;
		}else if  (col == 'magazine'){
			source_search.action = "http://find.joins.com/search_result_magazine01.asp";
			source_search.magazine_source.value = tmp;
		}		
		source_search.submit();
	}

	// Ä«Å×°í¸®2 (service)
	function service_sc(col, tmp) {
		if (col == 'news'){
			service_search.action = "http://find.joins.com/search_result_news02.asp";
			service_search.news_service.value = tmp;
		}else if  (col == 'magazine'){
			service_search.action = "http://find.joins.com/search_result_magazine01.asp";
			service_search.magazine_service.value = tmp;
		}		
		service_search.submit();
	}

	//°ø¹éÃ¼Å©
	function CheckStr(strOriginal, strFind, strChange){
		var position, strOri_Length;
		position = strOriginal.indexOf(strFind);

		while (position != -1){
			strOriginal = strOriginal.replace(strFind, strChange);
			position    = strOriginal.indexOf(strFind);
		}
		strOri_Length = strOriginal.length;
		return strOri_Length;
	}
// -->