'VBScript Function file for the 
'DXtreme Station Log Active Report Viewer TOC
'Trademark and Copyright DXtreme Software 1995-2003

<!--<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 "performance_report.htm","data"
	End Sub

	Sub getHelp()
		'Show the Help dialog box
		window.showModalDialog "../help/arv_help.htm",0,"dialogWidth:510px;dialogHeight:400px;dialogLeft:0;dialogTop:0;help:no;resizable:yes;status:no"
	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

-->
