function provaAlert() {
alert ("funziona");
}

 function modaleImg(imgName,titolo) {
 
 	$("#modale").dialog({
		autoOpen:false,
		bgiframe: true,
		height: 500,
		width: 400,
		modal: true
		});
		
		
		var htmlString = "<img  class='imgModal' src='img/"+imgName+"' />";
		
		$('#modale').dialog('open');
		$('#modale').dialog('option', 'title', titolo);
		$('#modale').html (htmlString);
		$('#modale').fadeIn(1000); 
 
 }
 

