
function search_enter(control)
{
	if (control.value == control.searchtext)
		control.value = "";
}

function search_leave(control)
{
	if (control.value == "")
		control.value = control.searchtext;
}

function search_keypress(e, control)
{
	var key;
	
	if (e.which)
		key = e.which;
	else
		key = e.keyCode;
	
	if (key == 13 && control.value != "")
	{
		window.location.href = control.searchpage + "?k=" + control.value;
		
		return false;
	}
	
	return true;
}