<!--

function english() {
	parent.location.href = "index_en.php";
}

function magyar() {
	parent.location.href = "index.php";
}

function mainMenu(where) {
	parent.location.href = where + ".php";
}

function mainMenuEn(where) {
	parent.location.href = where + "_en.php";
}

function imgPopup(kep, width, height) {
	wnd = popUp("img_popup.php?&kep=" + kep, "wnd", height, width);
}

function imgPopupEn(kep, width, height) {
	wnd = popUp("img_popup_en.php?&kep=" + kep, "wnd", height, width);
}

function checkSearchForm() {
	if (document.forms.searchForm.phrase.value == "" || document.forms.searchForm.phrase.value == "keresés") {
		alert("Kérjük adja meg a keresni kívánt kifejezést");
		return false;
	} else {
		return true;
	}
}

function checkSearchFormEn() {
	if (document.forms.searchForm.phrase.value == "" || document.forms.searchForm.phrase.value == "search phrase") {
		alert("Please enter search phrase");
		return false;
	} else {
		return true;
	}
}

function checkHirlevelForm() {
	if (document.forms.hirlevelForm.email.value == "" || document.forms.hirlevelForm.email.value == "e-mail cím") {
		alert("Adja meg levelezési címét");
	} else if (document.forms.hirlevelForm.email.value.indexOf('@') == -1 || document.forms.hirlevelForm.email.value.indexOf('.') == -1) {
		alert("Nem megfelelő e-mail cím");
	} else {
		document.forms.hirlevelForm.submit();
	}
}

function checkAjanlatForm() {
	if (document.forms.ajanlatForm.vezeteknev.value == "" || document.forms.ajanlatForm.utonev.value == "" || document.forms.ajanlatForm.beosztas.value == "" || document.forms.ajanlatForm.vallalat.value == "" || document.forms.ajanlatForm.email.value == "" || document.forms.ajanlatForm.cim.value == "" || document.forms.ajanlatForm.varos.value == "" || document.forms.ajanlatForm.irsz.value == "" || document.forms.ajanlatForm.orszag.value == "" || document.forms.ajanlatForm.telefon.value == "" || document.forms.ajanlatForm.kereset.value == "") {
		alert("Kérjük adja meg a kért adatokat");
	} else if (document.forms.ajanlatForm.email.value.indexOf('@') == -1 || document.forms.ajanlatForm.email.value.indexOf('.') == -1) {
		alert("Nem megfelelő e-mail cím");
	} else {
		document.forms.ajanlatForm.submit();
	}
}

function checkAjanlatFormEn() {
	if (document.forms.ajanlatForm.vezeteknev.value == "" || document.forms.ajanlatForm.utonev.value == "" || document.forms.ajanlatForm.beosztas.value == "" || document.forms.ajanlatForm.vallalat.value == "" || document.forms.ajanlatForm.email.value == "" || document.forms.ajanlatForm.cim.value == "" || document.forms.ajanlatForm.varos.value == "" || document.forms.ajanlatForm.irsz.value == "" || document.forms.ajanlatForm.orszag.value == "" || document.forms.ajanlatForm.telefon.value == "" || document.forms.ajanlatForm.kereset.value == "") {
		alert("Please supply us with the information requested");
	} else if (document.forms.ajanlatForm.email.value.indexOf('@') == -1 || document.forms.ajanlatForm.email.value.indexOf('.') == -1) {
		alert("Invalid e-mail address");
	} else {
		document.forms.ajanlatForm.submit();
	}
}
-->
