function provjeriKontakt() {
	var potvrdi = 1;
	var mail = document.fKontakt.txtMail.value;
	if (document.fKontakt.txtImePrezime.value.length == 0) {
		document.fKontakt.txtImePrezime.className = 'error';
		potvrdi = 0;
	}
	if (document.fKontakt.txtMail.value.length == 0) {
		document.fKontakt.txtMail.className = 'error';
		potvrdi = 0;
	}
	if (mail.indexOf('@') == -1) {
		document.fKontakt.txtMail.className = 'error';
		potvrdi = 0;
	}
	if (document.fKontakt.security_code.value.length == 0) {
		document.fKontakt.security_code.className = 'error';
		potvrdi = 0;
	}

	if (potvrdi == 1) {
		return true;
	}
	else {
		return false;
	}
}

function promjenaImePrezime() {
	document.fKontakt.txtImePrezime.className = 'tekst';
}

function promjenaMail() {
	document.fKontakt.txtMail.className = 'tekst';
}

function promjenaKod() {
	document.fKontakt.security_code.className = 'tekst';
}