function search_field_mode(act) {
	var f = $('input[name=q]')[0]; // document.getElementById('q');
	if (act == 'enter') {
		f.style.backgroundPosition = "0 -25px";
	}
	else {
		if (f.value == "") {
			f.style.backgroundPosition = "0 0";
		}
	}
	return false;
}

function tulosta(){
  if (!window.print){
    alert("Käyttämäsi selain ei tue tätä toimintoa. Käytä selaimen omaa tulostusta.")
    return
  }
  window.print()
}

