/* This script checks quicksearch fields in the quicksearch form */
function quicksearch(){

	// Get form data
	kaupunki = document.getElementById('city' ).value;
	hakusana = document.getElementById( 'keywords' ).value;

	// If no search data search isn't executed (return false)
	if( ( ( kaupunki == 'Postinro/tmp' || kaupunki == 'Zip code/City' || kaupunki == 'Postnummer/stad' ) && ( hakusana == 'Nimi/hakusana' || hakusana == 'Name/search word' || hakusana ==  'Namn/sökord' ) ) || ( kaupunki == '' && hakusana == '' ) )
		return false;
	
	// If no city set city empty
	if( ( kaupunki == 'Postinro/tmp' || kaupunki == 'Zip code/City' || kaupunki == 'Postnummer/stad' ) )
		document.getElementById('city').value = '';

	// If no keyword set keyword empty
	if( ( hakusana == 'Nimi/hakusana' || hakusana == 'Name/search word' || hakusana ==  'Namn/sökord' ) )
		document.getElementById( 'keywords' ).value = '';
	
	// Return true -> search is executed
	return true;

}
