function CheckForm() {

	var errorMsg = "";
	var errorMsgLong = "";

	if (document.putopisi.naslov.value == ""){
		errorMsg += "\n\tIme\t\t- Unesite naslov putopisa";
	}
	
	if (document.putopisi.email.value == ""){
		errorMsg += "\n\tE-Mail \t\t- Unesite Vašu E-Mail adresu";
	}
	
	if (document.putopisi.komentar.value == ""){
		errorMsg += "\n\tKomentar \t- Unesite Vaš putopis";
	}
	
	if (document.putopisi.komentar.value.length >= 5000){
		errorMsgLong += "\nVaš komentar je " + document.putopisi.Komentar.value.length + " znakova dugaćak. \nMože biti maksimalno dugaćak 5000 znakova!";
	}	
		
	for (var count = 0; count <= 4; ++count){
		if ((document.putopisi.elements[count].value.indexOf("<", 0) >= 0) && (document.putopisi.elements[count].value.indexOf(">", 0) >= 0)){
			errorMsgLong += "\n- HTML tagovi nisu dozvoljeni.";
		}			
	}
	
	if ((errorMsg != "") || (errorMsgLong != "")){		
		msg = "Niste popunili sva polja koja su potrebna.\n";
		msg += "Molimo da ih popunite te ponovo da ponovo pošaljete podatke.\n";
		msg += "----------------------------------------------------------------------------\n\n";
		msg += "Greška u slijedećim poljima: -\n";
		
		errorMsg += alert(msg + errorMsg + "\n" + errorMsgLong);
		return false;
	}
	
	return true;
}