function searchKeywordsFocus(e)
{
	if(e.value == "Search...")
		e.value = "";
}
function searchKeywordsBlur(e)
{
	if(e.value == "")
		e.value = "Search...";
}
function checkSearchForm()
{
	var keywords = document.getElementById('keywords').value;
	
	if(keywords != null)
	{
		if(trim(keywords).length > 0)
		{
			return true;
		}
	}
	
	return false;
}
function trim(string) 
{
	string = string.replace(/^\s+/,'');
  	string = string.replace(/\s+$/,'');
  	return string;
}
function jumpTo(e)
{
	if(e.value != null && e.value != "")
	{
		//document.location.href = "http://www.rush-vlaanderen.com/" + e.value;
		document.location.href = e.value;
	}
}