// JavaScript Document

function clrQ()
	{
	// Empty the search field if it is still primed with the value 'search'...
	if (document.forms.csebox.q.value == "Search the report")
		{
		document.forms.csebox.q.style.color = "#000000";
		document.forms.csebox.q.value = "";
		}
	}
