//### global variable declarations
//### -----------------------------------------------------

var searchBoxCleared	= false;

//### functions & subroutines
//### -----------------------------------------------------

function clearSearchBox()
{
	document.all.SearchText.value			= '';
	document.all.SearchText.style.color		= '#333333';
	searchBoxCleared						= true;
}

function IAC_Search( url )
{
    var text = document.getElementById('SearchText').value;
    
	if( text == "" )
	{
		alert( "Please enter text to search on." );
		return;
	}
	location.href = url + "?SearchText=" + text + "&page=0";
}

