

function submitFind() {
	var str = document.findform.find_query.value;
	str = str.replace(/[^A-Za-z0-9 öäüõÖÄÜÕ.+-]/g, "");

	document.findform.find_query.value = str;

	if (!document.findform.find_query.value) {
		alert('Sisesta palun otsingu märksõna(d).')
		document.findform.find_query.focus()
		return false;

	} else if (document.findform.find_query.value == 'Otsi...') {
		alert('Sisesta palun otsingu märksõna(d).')
		document.findform.find_query.focus()
		return false;

	} else {
		return true;
	}
}



function findFocus() {
	if (document.getElementById('find_query').value == 'Otsi...') {
		document.getElementById('find_query').value = '';
	}
}


function findBlur() {
	if (document.getElementById('find_query').value == '') {
		document.getElementById('find_query').value = 'Otsi...';
	}
}







