function clearMe(txt)	{
	if ( txt.value == 'Search:' )
		txt.value = '';
	txt.style.color = '#000000';
}

function checkMe(txt)	{
	if ( txt.value == '' )	{
		txt.value = 'Search:';
		txt.style.color = '#999999';
	}
}