function verify_login_edit() {
	if (document.edit_login.pass.value != document.edit_login.confirm_pass.value) {
		alert('Potvrdené heslo sa nezhoduje so zadaným heslom.');
		return false;
	} else if (document.edit_login.pass.value == "" || document.edit_login.confirm_pass.value == "" || document.edit_login.email.value == "" || document.edit_login.login.value == "") {
		alert('Neboli vyplnené všetky povinné údaje.');
		return false;
	} else if (document.edit_login.email.value.search('@') == -1) {
		alert('Nesprávne zadaný email.');
		return false;
	} else {
		return true;
	}
}

function copyIt() {
var x = document.getElementById("f_dic").value;
document.getElementById("f_icdph").value = x;
}

