// JavaScript Document
function crt(fnick, fmail, fsubj, fuzenet) {
	flc = "HIBA A BEJEGYZÉSKOR! A HIBA OKA :\n\n";
	if (fnick.value == "") {
		alert(flc+"A 'név' mező üresen maradt!");
		return false;	}
	 if (fmail.value == "") 
	{alert(flc+"Az 'email' mező üresen maradt!");
		return false;	}
	 if (fmail.value.indexOf("@") < 1 || fmail.value.indexOf(".") < 1) {
		alert(flc+"Hibás e-mail cím. ("+fmail.value+")! Kérlek adj meg valós címet.");
		return false;	}
	if (fuzenet.value == "") {
		alert(flc+"A 'szöveg' mező üresen maradt!");
		return false;	}
	return true;
	
}
function del(text1, text2, text3, text4) {
	text1.value = "";
	text2.value = "";
	text3.value = "";
	text4.value = "";
}

