function GotoChart(ssCode)
{
	var SelectType = document.getElementById(''+ssCode+'');
	for (var i = 0; i < SelectType.options.length; i++)
	{
		if(SelectType.options[i].selected)
		{
			charttype = SelectType.options[i].value;
		}
	}
	if(charttype=="0")
		return;
	else
		window.open("http://fif2.e-finet.net/CASH/techchart/drawQIndex.php?code="+ssCode+"&period="+charttype
		,'FINETNEWS','location=0,status=0,scrollbars=1,width=340,height=320');
}
