function refresh(){
	location = document.location;
	document.location=location;
}
function setCookie(hodnota){
	
	document.cookie="lan="+hodnota+"; path=/";
	
	refresh();
}
function isEmpty(field) {
	var str=field.value;
	if (str!="") {
		return true;
	}
	alert('Je nutné vyplnit veškeré údaje.');
	field.focus();
	return false;
}
function validatecv(){
	e = document.forms[0].email;
	if(!isEmpty(e)){
		return false;
	}else{	
		document.forms[0].submit();
	}
}
