 // --Sekce VTE 
function VyplnDotazFormAction()
{					  
	var FormElement = document.getElementById("PosliEmailForm");
	
	var NahodneCislo = Math.round((Math.random() * 20000)) * 8513; 
	
	if (FormElement != undefined){
		FormElement.action = '/tools/DO_send_VTE.php?AuthKey=' + NahodneCislo; 	
	}
	
}

 // --Sekce VTE
function ZkontrolujRegForm()
{

	var form = document.getElementById("PosliEmailForm");
	var je_ok = true;
	
	var text_tmp = form.jmeno.value;
    je_ok = text_tmp != "";
    if (je_ok == false) {
    	alert('Vyplňte prosím jméno');
    	return je_ok;
    }
    
	var text_tmp = form.prijmeni.value;
    je_ok = text_tmp != "";
    if (je_ok == false) {
    	alert('Vyplňte prosím příjmení');
    	return je_ok;
    }
    
	var text_tmp = form.adresa.value;
    je_ok = text_tmp != "";
    if (je_ok == false) {
    	alert('Vyplňte prosím adresu');
    	return je_ok;
    }      
    
	var text_tmp = form.tel.value;
    je_ok = text_tmp != "";
    if (je_ok == false) {
    	alert('Vyplňte prosím telefon');
    	return je_ok;
    }   
       
	var text_tmp = form.email.value;
    je_ok = text_tmp != "";
    if (je_ok == false) {
    	alert('Vyplňte prosím email');
    	return je_ok;
    }
          
    return je_ok; 
}