
function MandaMail(pagina,id) {
	document.getElementById("FotoSquadra").style.visibility = "visible";
	document.getElementById('FotoSquadra').style.padding = '0px';
	document.getElementById("FotoSquadra").style.borderWidth = "1px";
	document.getElementById("FotoSquadra").style.borderColor = "#ebebeb";
	document.getElementById("FotoSquadra").style.borderStyle = "solid";
	document.getElementById('FotoSquadra').style.top = '20px';
	document.getElementById('FotoSquadra').style.left = '20px';  
	document.getElementById('FotoSquadra').innerHTML = '<div align="right"><a href="javascript:chiudi_mail()"><img src="_img/chiudi.gif" border="0" title=":: Chiudi ::"></a></div><div style="text-align:right;"> <form name="MandaMail" method="post" action="_inc/'+pagina+'.asp"> E-mail Destinatario &nbsp; <input type="text" name="Destinatario" size="35"><br> E-mail Mittente &nbsp; <input type="text" name="Mittente" size="35"><br> Messaggio &nbsp; <textarea name="Messaggio" rows="5" cols="27"></textarea><br> <input type="hidden" name="Id" value="'+id+'"> <input type="submit" name="Submit" value="Manda la Mail"> </form></div>';
	}

function chiudi_mail() {
	document.getElementById("FotoSquadra").style.visibility = "hidden";
	}	
