function goSearch(searchInx)
{
	var formName = document.searchForm;
	var selectStr = "";
	var chartUrl = "";

	if(searchInx == '1')
	{
		selectStr = '' + formName.search01.options[formName.search01.selectedIndex].value;
		if(selectStr == "99"){
			chartUrl = '' + "http://paxnet.moneta.co.kr/stock/searchPower/searchEasy.jsp";
		}
		else{
			chartUrl = '' + "http://paxnet.moneta.co.kr/stock/searchPower/searchFcgi.jsp?type=E&g=0&p=1&s=0&i=360&k=";
			chartUrl += selectStr;
		}
	}
	else if (searchInx == '2')
	{
		selectStr = '' + formName.search02.options[formName.search02.selectedIndex].value;
		if(selectStr == "99"){
			chartUrl = '' + "http://paxnet.moneta.co.kr/stock/searchPower/searchPro.jsp";
		}
		else{
			chartUrl = '' + "http://paxnet.moneta.co.kr/stock/searchPower/searchFcgi.jsp?type=S&g=0&p=1&s=0&i=360&k=";
			chartUrl += selectStr;
		}
	}
	else if (searchInx == '3')
	{
		selectStr = '' + formName.search03.options[formName.search03.selectedIndex].value;
		if(selectStr == "99"){
			chartUrl = '' + "http://paxnet.moneta.co.kr/stock/searchPower/searchCandle.jsp";
		}
		else{
			chartUrl = '' + "http://paxnet.moneta.co.kr/stock/searchPower/searchFcgi.jsp?type=C&g=0&p=1&s=0&i=360&k=";
			chartUrl += selectStr;
		}
	}
	else if (searchInx == '4')
	{
		selectStr = '' + formName.search04.options[formName.search04.selectedIndex].value;
		if(selectStr == "99"){
			chartUrl = '' + "http://paxnet.moneta.co.kr/stock/searchPower/searchPax.jsp";
		}
		else if(selectStr == "1"){
			chartUrl = '' + "http://paxnet.moneta.co.kr/stock/searchPower/searchPaxResult.jsp?type=1";
		}
		else if(selectStr == "2"){
			chartUrl = '' + "http://paxnet.moneta.co.kr/stock/searchPower/searchPaxResult.jsp?type=2";
		}
		else{
			chartUrl = '' + "http://paxnet.moneta.co.kr/stock/searchPower/searchPaxResult.jsp?type=1";
		}
	}
	else
	{
		selectStr = '' + formName.search01.options[formName.search01.selectedIndex].value;
		if(selectStr == "99"){
			chartUrl = '' + "http://paxnet.moneta.co.kr/stock/searchPower/searchEasy.jsp";
		}
		else{
			chartUrl = '' + "http://paxnet.moneta.co.kr/stock/searchPower/searchFcgi.jsp?type=E&g=0&p=1&s=0&i=360&k=";
			chartUrl += selectStr;
		}
	}

	self.document.location = chartUrl;
							
}
