function focusSearch(elid)
{
	el = document.getElementById(elid);
	el.value='';
}
function blurSearch(elid)
{
	el = document.getElementById(elid);
	el.value='Etsi sivustolta';
}
