function over_kosik(meno_f, priezvisko, ulica, mesto, psc, stat, mail, telefon) {
	
	var chyba = 0;
	
	if(meno_f.length<=0) {
		document.getElementById('form_meno').style.backgroundColor='#e53d0d';
		chyba = 1;
	}
	if(priezvisko.length<=0) {
		document.getElementById('form_priezvisko').style.backgroundColor='#e53d0d';
		chyba = 1;
	}
	if(ulica.length<=0) {
		document.getElementById('form_ulica').style.backgroundColor='#e53d0d';
		chyba = 1;
	}
	if(mesto.length<=0) {
		document.getElementById('form_mesto').style.backgroundColor='#e53d0d';
		chyba = 1;
	}
	if(psc.length<=0) {
		document.getElementById('form_psc').style.backgroundColor='#e53d0d';
		chyba = 1;
	}
	if(stat.length<=0) {
		document.getElementById('form_stat').style.backgroundColor='#e53d0d';
		chyba = 1;
	}
	if(mail.length<=0) {
		document.getElementById('form_mail').style.backgroundColor='#e53d0d';
		chyba = 1;
	}
	if(mail.indexOf('@')==-1) {
		document.getElementById('form_mail').style.backgroundColor='#e53d0d';
		chyba = 1;
	}
	if(telefon.length<=0) {
		document.getElementById('form_telefon').style.backgroundColor='#e53d0d';
		chyba = 1;
	}
	
	if(chyba==1) { alert('Položky označené farbou sú nesprávne.'); return false; }
	else { return true; }
	
}