function sendmail() {
 var nev = document.getElementById("fnev").value;
 var tel = document.getElementById("ftel").value;
 var mail = document.getElementById("fmail").value;
 if (nev.length == 0 || nev == "Az Ön neve" || nev == "Your name") {
  alert("Kérjük adja meg a nevét! Köszönjük!\nPlease fill 'your name' field!"); return;
 }
 if ((tel.length == 0 || tel == "Az Ön telefonszáma" || tel == "Your telephone number") && (mail.length == 0 || mail == "Az Ön e-mail címe" || mail == "Your e-mail")) {
  alert("Kérjük adja meg a telefonszámát vagy e-mail címét! Köszönjük!\nPlease fill out the telephone or e-mail contacts!");  return;
 }
 document.getElementById("sendmailform").submit();
}
function clickclear(thisfield, defaulttext, color) {
	if (thisfield.value == defaulttext) {
		thisfield.value = "";
		if (!color) {
			color = "000000";
		}
		thisfield.style.color = "#" + color;
	}
}
function clickrecall(thisfield, defaulttext, color) {
	if (thisfield.value == "") {
		thisfield.value = defaulttext;
		if (!color) {
			color = "000000";
		}
		thisfield.style.color = "#" + color;
	}
}                                                   

