	// ------------------------------------------------------------------------------------------------------------------------

	// This function initializes the page.
	function initPage ()
		{	// Give the search box the focus.
			var control = document.getElementById("s");
			
			if ( control )
				{	// Set the Javascript to clear the form when typing begins.
					control.onfocus = Function("clearField('s')");
				}; // if ( control )	
		}; // function initPage ()

	// ------------------------------------------------------------------------------------------------------------------------

	// This function clears the specified field for the first time.
	function clearField (id)
		{	// Get the control.
			var control = document.getElementById(id);

			// Found the control; therefore, clear it.
			if ( control )
				{	control.value		= "";			
					control.onmousedown	= "";
					control.onkeypress	= "";
					control.focus();
				}; // if ( control )
		}; // function clearField (id)
		
	// ------------------------------------------------------------------------------------------------------------------------
