/*function OpenEGMWebcast(sURL) {
	var iTop = 10;
	var iLeft = 10;
	var iHeight = 500;
	var iWidth = 850;
	var oWindow = window.open(sURL, "_webcast", "top=" + iTop + ",left=" + iLeft + ",width=" + iWidth + ",height=" + iHeight + ",channelmode=no,directories=no,fullscreen=no,location=no,menubar=no,resizable=yes,status=no,titlebar=no,toolbar=no,scrollbars=no");
	oWindow.focus();
}*/
function loadPriceInfo() {
	var oFrame = document.getElementById('priceinfo');
	if (oFrame != null) {
		var oDocument = oFrame.contentWindow.document;
		oDocument.open();
		oDocument.write(
			"<html><head><style type='text/css'> " +
			"div {margin: 100px auto 0px auto;text-align:center;} " +
			"</style></head><body><div>" +
			"<p><img src='/images/loading.gif' /></p>" +
			"</div></body></html>");
		oDocument.close();
		setTimeout("_loadPriceInfo()", 2000);
	}
}
function _loadPriceInfo() {
	var oFrame = document.getElementById('priceinfo');
	if (oFrame != null) {
		oFrame.src = "http://www.bourseinvestor.com/cobrands/AIO/pages/index.asp";
	}
}
function loadReleases() {
	var oFrame = document.getElementById('releases');
	if (oFrame != null) {
		var oDocument = oFrame.contentWindow.document;
		oDocument.open();
		oDocument.write(
			"<html><head><style type='text/css'> " +
			"div {margin: 100px auto 0px auto;text-align:center;} " +
			"</style></head><body><div>" +
			"<p><img src='/images/loading.gif' /></p>" +
			"</div></body></html>");
		oDocument.close();
		setTimeout("_loadReleases()", 2000);
	}
}
function _loadReleases() {
	var oFrame = document.getElementById('releases');
	if (oFrame != null) {
		oFrame.src = "http://www.bourseinvestor.com/cobrands/AIO/pages/companyreports.asp";
	}
}