<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->
<!-- Original:  Roberto Ortali (ortiz83@libero.it) -->

<!-- Begin

var refer=true;


function combo() {
if (refer) {
  document.all.contents.style.display="inline";
  refer=false;
}
else {
  document.all.contents.style.display="none";
  refer=true;
}
}


// THE FOLLOWING CODE WAS CREATED BY TRISTANO AJMONE IN 2003:

function checkmail() {

xloc=(screen.width-600)/2;
yloc=(screen.height-276)/2;
mailpreview = window.open("", "AnteprimaMail", "width=600,height=276");
mailpreview.moveTo(xloc, yloc);

createmailtext();

html_page="<html><head><title>Anteprima EMail</title></head>"
html_page+="<body bgcolor=#fffff leftmargin=0 topmargin=0 rightmargin=0 bottommargin=0 marginwidth=0 marginheight=0>";
html_page+="<table width=100%  height=250 border=2 cellpadding=10 cellspacing=0 bordercolor=#000000>";
html_page+="<tr bgcolor=#0066CC><td align=left>";
html_page+="<p><font color=#FFFFFF  style=\"font-size: 18px\" face=\"Arial, Helvetica, sans-serif\"><strong>";
html_page+="mittente: &lt;"+parent.document.all.formconsiglia.mailvisitatore.value+"&gt;<br>destinatario: &lt;";
html_page+=parent.document.all.formconsiglia.mailamico.value+"&gt;</strong></font></p></td></tr>";
html_page+="<tr><td><font face=\"Verdana, Arial, Helvetica, sans-serif\" style=\"font-size: 12px\"><strong>"; 
html_page+=line1+"</br></br>"+line2+"</br></br>"+line3+"</br></br>"; 
html_page+=line4+"</br></br> <center>"+line5+"</br></br></center></td></tr>";
html_page+="<tr bgcolor=#0066CC><td align=center>";
html_page+="<input type=\"button\" value=\"CHIUDI ANTEMPRIMA\" onClick=\"window.close();\">";
html_page+="</td></tr>";
html_page+="";
html_page+="</table></body></html>";
mailpreview.document.writeln(html_page);
//alert ("2222");

}


function createmailtext() {

if (parent.document.all.formconsiglia.sesso[0].checked) sesso="maschio";
else sesso="femmina";

if (parent.document.all.formconsiglia.rivolgersi[0].checked) rivolgersi="tu";
else rivolgersi="lei";

if (rivolgersi=="tu") {
	if (sesso=="maschio") line1="Caro ";
	else line1="Cara ";
	line2="ti";
	line4="Ciao,";
	}
else {
	if (sesso=="maschio") line1="Egregio ";
	else line1="Egregia ";
	line2="le";
	line4="Distinti saluti,";
	}



line1+= parent.document.all.formconsiglia.nomeamico.value+",";
line2+= " consiglio di visitare questa pagina web:";
line3 = parent.document.all.formconsiglia.url.value;
line5 = parent.document.all.formconsiglia.nomevisitatore.value;

}

//  End -->

