// JScript source code
function gotoFrame(sUrl)
{
	var fMain = document.getElementById("frmMain");
	if(fMain != null)
	{
		fMain.src = sUrl;
	}
}

function calcIframeHeight(iframeName)
{
	//find the height of the internal page
	var the_frm = document.getElementById(iframeName);
	if(the_frm != null)
	{
		var the_height=
			the_frm.contentWindow.document.body.scrollHeight;
	
		//change the height of the iframe
		the_frm.height = the_height;
	}
}

function gotoQuote(sName)
{
	var fMain = document.getElementById("frmMain");
	if(fMain != null)
	{
		var sUrl = "http://sites3.barchart.com/pl/vsn/default.asp?code=XVSN";
		if (sName != "")
			sUrl = sUrl+"&section="+sName;
		
		fMain.src = sUrl;
	}
}
