function loadinvio() {	 
	window.location.href="#gallery";
 	var div_iscrivimi = document.getElementById("risultato");
 	div_iscrivimi.style.display="none";
 	var div_load = document.getElementById("load");
 	div_load.style.display="block";
}

function completato() {	 
 	var div_iscrivimi = document.getElementById("risultato");
 	div_iscrivimi.style.display="block";
 	var div_load = document.getElementById("load");
 	div_load.style.display="none";	
	trasformaRel();
	window.location.href="#gallery";
} 


function trasformaRel() {
		if (!document.getElementsByTagName){ return; }
		var anchors = document.getElementsByTagName('a');

		// loop through all anchor tags
		for (var i=0; i<anchors.length; i++){
			var anchor = anchors[i];
			
			var relAttribute = String(anchor.getAttribute('rel'));
			
			// use the string.match() method to catch 'lightbox' references in the rel attribute
			if (anchor.getAttribute('href') && (relAttribute.toLowerCase().match('lightbox'))){
				anchor.onclick = function () {myLightbox.start(this); return false;}
			}
		}
}