// JavaScript Document
 function validateBlogForm (form) {
 
  	if (form.comart.value =="") {
 		alert("Inserisci un commento");
 		form.commento.focus();
 		return false;
 	}
	
	if (form.codice.value =="") {
 		alert("Inserisci il codice dell' immagine");
 		form.commento.focus();
 		return false;
 	}
	 
 	return true;
}

