// JavaScript Document
		function openMeeting(swfFileName)
		{
			var len =swfFileName.length;
			var HTMLFileName = "";
			if (len > 3)
			{
				HTMLFileName = swfFileName.substring(0,len-3) + 'html'
			}
			
			newWebinarWindow=window.open(HTMLFileName,'Training','location=no, resizable=yes, scrollbars=yes');
			if (window.focus) {newWebinarWindow.focus()}
			return false;
		}		function openTranscript(url)
		{
			newWebinarWindow=window.open(url,'Transcript','location=no, resizable=yes, scrollbars=yes');
			if (window.focus) {newWebinarWindow.focus()}
			return false;
		}
		function openPropLog(url)
		{
			newWebinarWindow=window.open(url,'Propretary_Trade_Log','location=no, resizable=yes, scrollbars=yes');
			if (window.focus) {newWebinarWindow.focus()}
			return false;
		}
		function openTradingStyles(url)
		{
			newWebinarWindow=window.open(url,'TradingStyles','location=no, resizable=yes, scrollbars=yes');
			if (window.focus) {newWebinarWindow.focus()}
			return false;
		}
		
		function getHTMLfromSWF(swfFileName)
		{
			var len =swfFileName.length;
			var HTMLFileName = "";
			if (len > 3)
			{
				HTMLFileName = swfFileName.substring(0,len-3) + 'html'
			}
			return HTMLFileName;
		}

