function check_checkbox () {
   if (document.mail.Teilnahme.checked == true) {
       document.mail.email.readOnly = false;
       document.mail.email.style.backgroundColor = '#FFFFFF';

       document.mail.Wohnort.readOnly = false;
       document.mail.Wohnort.style.backgroundColor = '#FFFFFF';

       document.mail.Name.readOnly = false;
       document.mail.Name.style.backgroundColor = '#FFFFFF';

   } else {
       document.mail.email.readOnly = true;
       document.mail.Wohnort.readOnly = true;
       document.mail.Name.readOnly = true;
       document.mail.Name.style.backgroundColor = '#EFEFEF';
       document.mail.Wohnort.style.backgroundColor = '#EFEFEF';
       document.mail.email.style.backgroundColor = '#EFEFEF';
   }
}

function validate_address () {
          if (document.mail.Teilnahme.checked == false) {
	    return true;
	 }

          if  (document.mail.email.value == '') {
             alert ("Sie möchten am Gewinnspiel teilnehmen. Daher benötigen wir Ihre E-Mail-Adresse.");
             return false;
          }
          if  (document.mail.Name.value == '') {
             alert ("Sie möchten am Gewinnspiel teilnehmen. Daher benötigen wir Ihren Nachnamen.");
             return false;
          }

          if  (document.mail.Wohnort.value == '') {
             alert ("Sie möchten am Gewinnspiel teilnehmen. Daher benötigen Ihren Wohnort.");
             return false;
          }
          return true;


}
