/// KOntrola ci su vsetky udaje zadane ////////////////////////////////////
/// NASTAVENIA ///////////////////////
var error_tel = 'Zadajte telefónne číslo!';

////////////////////*** KONTROLA ***///////////////////////////////////////
function kontrolaporadime() {


   if (document.poradime.telefon.value=='') {
		alert(error_tel);
		document.poradime.telefon.focus();
		return false;
		}

}


