// JavaScript Document

//funzione che crea la mail vvfimer
	function getmail(str,id){
		ind="mailto:";
		ind+=str;
		ind+="@" + "vvfimer";
		ind+=".it";
		var l = document.getElementById(id);
		l.href=ind;
	}
//funzione che crea le mail nel guestbook
	function getmailguest(str1,str2,id){
		ind="mailto:";
		ind+=str1;
		ind+="@"
		ind+=str2;
		var l = document.getElementById(id);
		l.href=ind;
	}
//conferma l'eliminazione
	function conferma(){
		return (confirm('Sei sicuro di voler continuare?'));
	}
	

