function zu() {
document.getElementById('rrdiv').style.visibility = 'hidden';
if (document.forms['rr'].name.value==''){
document.forms['rr'].name.value='Name und Firma hier';
}

if (document.forms['rr'].nummer.value==''){
document.forms['rr'].nummer.value='Telefonnummer hier';
}

if (document.forms['rr'].date.value==''){
document.forms['rr'].date.value='optional Datum / Uhrzeit';
}
}
function re() {

if (document.forms['rr'].name.value==''){
document.forms['rr'].name.value='Name und Firma hier';
}

if (document.forms['rr'].nummer.value==''){
document.forms['rr'].nummer.value='Telefonnummer hier';
}

if (document.forms['rr'].date.value==''){
document.forms['rr'].date.value='optional Datum / Uhrzeit';
}
}
function recall() {
document.getElementById('rrdiv').style.visibility = 'visible';
}

function kontakt_test() {
 if (document.forms['kontakt1'].nachname.value=='') { alert('Bitte geben Sie Ihren Namen an!'); return false; }
 if (document.forms['kontakt1'].email.value=='') { alert('Bitte geben Sie Ihre Email-Adresse an!'); return false; }
 if (document.forms['kontakt1'].email.value.indexOf('@')==-1||document.forms['kontakt1'].email.value.indexOf('.')==-1) {
   alert('Bitte geben Sie eine gueltige Email-Adresse an! Es duerfen keine Leerzeichen, Umlaute etc. enthalten sein.'); return false;
 }
}

function rr_test() {
 if (document.forms['rr'].name.value=='' || document.forms['rr'].name.value=='Name und Firma hier') { alert('Bitte geben Sie Ihren Namen an!'); return false; }
 if (document.forms['rr'].nummer.value=='' || document.forms['rr'].nummer.value=='Telefonnummer hier') { alert('Bitte geben Sie Ihren Telefonnummer an!'); return false; }
 return true;
}

function kontakt_hinweis(){
document.getElementById('zusatzdiv1').style.display='none';
document.getElementById('zusatzbild1').style.display='none';
var buchstaben='aw'+String.fromCharCode(Math.floor(Math.random()*24+65),Math.floor(Math.random()*24+65),Math.floor(Math.random()*24+65),Math.floor(Math.random()*24+65),Math.floor(Math.random()*24+65),Math.floor(Math.random()*24+65),Math.floor(Math.random()*24+65)) ;
document.forms['kontakt1'].p1.value=buchstaben;
document.getElementById('zahl1').value=buchstaben;
}

function kontakt_hinweis2(){
document.getElementById('zusatzdiv2').style.display='none';
var buchstaben='aw'+String.fromCharCode(Math.floor(Math.random()*24+65),Math.floor(Math.random()*24+65),Math.floor(Math.random()*24+65),Math.floor(Math.random()*24+65),Math.floor(Math.random()*24+65),Math.floor(Math.random()*24+65),Math.floor(Math.random()*24+65)) ;
document.forms['rr'].p2.value=buchstaben;
document.getElementById('zahl2').value=buchstaben;
}
