

function submit_search() {
	if( document.forms[0] ) {
		if( document.forms[0].szukaj.value == "szukana fraza" || document.forms[0].szukaj.value == "" ) {
			alert("Please fill in the search phrase.");
			return;
		}
		document.forms[0].submit();
	}
}

function submit_contact_form() {
	var form = document.getElementById('fast_kontakt');
	if( form ) {
		if( !validate_form( 'nazwisko', 'Please fill in your name' ) ) {
			return;
		}
		if( !validate_form( 'mail', 'Please fill in your e-mail' ) ) {
			return;
		}
		if( !validate_form( 'tekst', 'Please fill in question contents' ) ) {
			return;
		}
		var zgoda = document.getElementById( 'zgoda' );
		if( zgoda.checked == true ) {
			form.submit();
			return;
		} 
		alert("Please agree to terms and conditions");
		return;
	}
	alert("Brak dostêpu do formularza");
}

function validate_form(id,text) {
	var elem = document.getElementById( id );
	if( typeof( elem ) != "undefined" ) {
		if( elem.value=='' ) {
			alert( text );
			return false;
		}
		return true;
	}
	return false;
}