function gettopquote()
{ 
	var topquote = document.forms['frmsearch2'].cbotopquote;
	if (topquote.options[topquote.selectedIndex].value != 1) 
	{
		if (document.forms['frmsearch2'].optquote[0].checked == true)
		{
			window.location = 'https://www.rjobrien.com/corp/quoteresult.php?quotesymbol=' + topquote.options[topquote.selectedIndex].value;
		} else {
			window.location = 'https://www.rjobrien.com/corp/charting.php?symbols=' + topquote.options[topquote.selectedIndex].value;
		}
	}
}

function dosymbolsearch()
{
	var quotesearch = document.forms['frmsearch2'].txtsearchquote;
	if (document.forms['frmsearch2'].optquote[0].checked == true)
	{
		window.location = 'https://www.rjobrien.com/corp/quoteresult.php?quotesymbol=' + quotesearch.value;
	} else {
		window.location = 'https://www.rjobrien.com/corp/charting.php?symbols=' + quotesearch.value;
	}
}