//<![CDATA[
function onSubmit(id) /* 하단 바로가기 스크립트 */
{
	var select = document.getElementById(id);

	if(id != null)
	{
		if(select.selectedIndex <= 0)
		{
			alert("항목을 선택하시기 바랍니다.")
			return false;
		}else{
			/*if(select.options[select.selectedIndex].value.indexOf(":/") <0)
                    		{
				alert("알맞은 항목을 선택하시기 바랍니다.")
				return false;
			}*/
		}
	}else
	{
		alert("관련사이트 링크 항목이 없습니다.")
		return false;
	}
	return true;
}
//]]>
