
window.onload = function ( )
{
	// Check the search input box is in the page as it's not displayed
	// in the various secure areas
	if ( document.getElementById ( 'search_text' ) )
	{
		populate_search ( );	// For forms that use the country field
	}
}

/*----------------------------------------------------------------------------------------*/
function clear_search ( )
/*----------------------------------------------------------------------------------------*/
{
	str_value	= document.getElementById ( 'search_text' ).value;
	
	if ( str_value == 'Search' )
	{
		document.getElementById ( 'search_text' ).value = '';
		document.getElementById ( 'search_text' ).style.color = '#000000';
	}
}

/*----------------------------------------------------------------------------------------*/
function populate_search ( )
/*----------------------------------------------------------------------------------------*/
{
	str_value	= document.getElementById ( 'search_text' ).value;
	
	if ( str_value == '' )
	{
		document.getElementById ( 'search_text' ).value = 'Search';
		document.getElementById ( 'search_text' ).style.color = '#999999';
	}
}
	