<!--
//var cgi_path = 'http://www.resourceexploration.com/cgi-bin';
var cgi_path = '/cgi-bin';
var stock_id = '';
var type = '';
var refresh_time = 60000;
function LoadTicker(){
	var text = getRequestData(cgi_path + '/stock.cgi?id=' + stock_id + '&type=' + type);
	document.getElementById("stock_ticker").innerHTML = text;
	setTimeout("LoadTicker()",refresh_time);
}
//-->
