function goClub(item)
{
	var selIdx = item.selectedIndex;

	if(item[selIdx].value == "")	 return false;

	top.window.location.href='/@' + item[selIdx].value;	
	
	return true;
}

function goClub2(item, url)
{
	var selIdx = item.selectedIndex;

	if(item[selIdx].value == "")	 return false;
	top.window.location.href= url + '/@' + item[selIdx].value;	
	
	return true;
}

// club search check ====================================================
function chkClubSearch()
{
	var form = document.srh_frm;		

		var sSrh = form.sSrh.value;
		var sKey = form.sKey.value;
		
		if(form.sKey.value.length < 1)
		{
			alert('°Ë»ö¾î¸¦ ÀÔ·ÂÇØ ÁÖ½Ê½Ã¿À');
			form.sKey.focus();
			return false;	
		}
	    else {
			if (!checkWord(form.sKey.value))
        	return false;
		}

		return true;	
		
}

function chkClubGo()
{
	var form = document.clubgo_frm;
	
		if(form.sClubUrl.value.length < 1)	
		{
			alert('Å¬·´URLÀ» ÀÔ·ÂÇØ ÁÖ½Ê½Ã¿À.');
			form.sClubUrl.focus();
			return false;	
		}

		return true;		
			
	
}
/*
function mvFocus(no)
{
	var form = document.srh_frm;	
	
	if(no == 1) {
		form.srhimg1.focus();		
		
	} else if(no == 2) {
		form.srhimg1.focus();
	}
}
*/
// club search end =====================================================

