﻿// Benchmark JavaScript File

function BenchmarkSearchClass()
{
	//-------------------------------------------------------------------------------------------------
	// *** Internal class module Objects ***
	//.................................................................................................
	var m_Visible		= false;
	//.................................................................................................
	// *** Internal class module Objects ***
	//-------------------------------------------------------------------------------------------------
	//-------------------------------------------------------------------------------------------------
	// *** Public Properties ***
	//.................................................................................................
	this.Visible = function()
	{
		return m_Visible;
	}
	//.................................................................................................
	this.Visible = function(TrueOrFalse)
	{
		m_Visible = TrueOrFalse;
		if (m_Visible)		BenchmarkSearchCtrl.style.visibility="visible";
		if (! m_Visible)	BenchmarkSearchCntl.style.visibility="hidden";
	}
	//.................................................................................................
	//.................................................................................................
	// *** Public Properties ***
	//-------------------------------------------------------------------------------------------------
	//-------------------------------------------------------------------------------------------------
	// *** Public Methods *** 
	//.................................................................................................
	//.................................................................................................

	//.................................................................................................
	// *** Public Methods *** 
	//-------------------------------------------------------------------------------------------------
}

// *** Global Classes ***
//-------------------------------------------------------------------------------------------------
