function SearchX()
{
    var regexp = /^[a-z0-9][a-z0-9_ +]*$/i;
	with ( document.mysearch )
	{
		if (keyword.value == "")
		{
			alert("Please Enter your keyword.");
			keyword.focus();
			return false;
		}

		if ( SearchPart.options[SearchPart.selectedIndex].value == "1" )
			action="http://kr.hiseoultrade.com/search/KoreanSeoulProductSearch.cgi"
		else if ( SearchPart.options[SearchPart.selectedIndex].value == "2" )
 			action="http://search.hiseoultrade.com/search/NewKoreanSeoulTradeSearch.cgi";
		else if ( SearchPart.options[SearchPart.selectedIndex].value == "3" )
			action="http://kr.hiseoultrade.com/search/KoreanSeoulCompanySearch.cgi"
		else
		{
			return false;
		}

		submit();
	}
}

function gotoNext ( index )
{
	window.location.href=location.href+"&gubun="+index;
}