
function ellenorizz_search()
{

if (!document.search.searchfor.value)
     {
        alert("Kérek egy keresőszót!");
        return false;
     }

 return true;

}

function ellenorizz_login()
{

if (!document.login.username.value)
     {
        alert("Adj meg egy felhasználónevet!");
        return false;
     }
if (!document.login.password.value)
     {
        alert("Adj meg egy jelszót!");
        return false;
     }

 return true;

}


function ellenorizz_email()
{

if (!document.hirlevel.email.value)
     {
        alert("Kérjük adja meg az email címét!");
        return false;
     }

 return true;

}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function popupform(myform, windowname)

{

if (! window.focus)return true;
window.open('', windowname, 'height=320,width=350,scrollbars=no,status=no');
myform.target=windowname;
return true;
}


function $(id) { return document.getElementById(id); } 
function initBannerForm(type) {
	if (type == '') {
		$('nofile').style.display = 'none';
		$('withfile').style.display = 'block';

		$('type').onchange = function(e) {
			if ($('type').value == 'picture' || $('type').value == 'flash') {
				$('nofile').style.display = 'none';
				$('withfile').style.display = 'block';
			} else if ($('type').value == 'html') {
				$('nofile').style.display = 'block';
				$('withfile').style.display = 'none';
			}
		}
	} else {
		if (type == 'picture' || type == 'flash') {
			$('nofile').style.display = 'none';
			$('withfile').style.display = 'block';
		} else {
			$('nofile').style.display = 'block';
			$('withfile').style.display = 'none';
		}
	}
}