
  function chiudiDiv(div)
 {
 		document.getElementById(div).style.display="none";   
 		     
   
    }  



function
copiadati()
{

if (document.rich_festa.nome.value == "") {
alert("Inserire il nome");
document.rich_festa.nome.focus();
	}



if (document.rich_festa.cognome.value == "") {
alert("Inserire il cognome");
document.rich_festa.cognome.focus();
	}

if (document.rich_festa.gA.value == "") {
alert("Inserire il giorno di nascita");
document.rich_festa.gA.focus();
	}

if (document.rich_festa.mA.value == "") {
alert("Inserire il mese di nascita");
document.rich_festa.mA.focus();
	}

if (document.rich_festa.annoA.value == "") {
alert("Inserire l'anno di nascita");
document.rich_festa.annoA.focus();
	}




if (document.rich_festa.nome.value != "" && document.rich_festa.cognome.value != "") 
{
document.rich_festa.nome_festeggiato.value=document.rich_festa.nome.value;
document.rich_festa.cognome_festeggiato.value=document.rich_festa.cognome.value;
document.rich_festa.gF.value=document.rich_festa.gA.value;
document.rich_festa.mF.value=document.rich_festa.mA.value;
document.rich_festa.annoF.value=document.rich_festa.annoA.value;
	}





}



