function showZoomImage(id_img,path) {
	$('#'+id_img).attr({src: path});
	return false;
}

function disabilita() {
var text = document.getElementById("other");
text.disabled=true;
}

function abilita() {
var text = document.getElementById("other");
text.disabled=false;
}
