function textClick()
{
	var f = document.forms["search_form"];
	if (f.search.value == "Search")
	{
		f.search.value = "";
	}
	
}
function searchClick()
{
	var f = document.forms["search_form"];
	if (isEmpty(f.search.value))
	{
		alert("Search keyword required.");
	}
	else
	{
		f.submit();
	}
}

function isEmpty(str)
{
    for(var intLoop=0; intLoop<str.length; intLoop++)
      if(str.charAt(intLoop)!=" ")
        return false;
    return true;
}