'VBScript Function file for the 
'DXtreme Station Log Active Report Viewer TOC
'Trademark and Copyright DXtreme Software 1995-2008

<!--<BR>
	option explicit
	
	Sub getPreferencesFromTOC()
		'Show the Preferences dialog box
		window.showModalDialog "activereportviewerprefs.htm",0,"dialogWidth:450px;dialogHeight:325px;help:no;resizable:yes;status:no"
		window.open "stations_report.htm","data"
	End Sub

	Sub getHelp()
		'Show the Help dialog box
		 window.open "http://www.dxtreme.com/arvhelp60/arv_help.htm","Window","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=yes,width=650,height=470,top=10,left=10"

	End Sub
	
	Sub doSection (sectionID)'
	'Display the section if it's not displayed; hide it if it is displayed

		If sectionID.style.display ="none" Then 
			sectionID.style.display = ""
		Else	
			sectionID.style.display = "none"
		End If

	End Sub

	Sub noSection (sectionID)
	'Remove the section when user clicks in the opened DIV
		If sectionID.style.display = "" Then
			sectionID.style.display = "none"
		End If
	End Sub

-->
