// This function changes the colour of the search box
// so that the user is aware a search is being carried out
function ChangeColour(frm)
{
	frm.search.style.backgroundColor = 'gray';
	frm.search.style.color = 'white';
	return true;
}