function fill_time() {
document.kontakt.datum.value = d_datum();
return
}

/* Funktion deutsche Zeit */
function d_datum () {
var d,tag,monat,jahr,datum;
d = new Date();
tag = d.getDate();
if(tag<10) tag="0"+tag;
monat = d.getMonth()+1;
if(monat<10) monat="0"+monat;
jahr = d.getYear();
datum = tag+"."+monat+"."+jahr;
return datum;
}

function chkform () {

if (document.kontakt.nachname.value == ""){
window.alert("Sie haben noch keinen Nachnamen eingegeben");
document.kontakt.nachname.focus();
return false;}

if (document.kontakt.ort.value == ""){
window.alert("Sie haben noch keinen Ort eingegeben");
document.kontakt.ort.focus();
return false;}

if (document.kontakt.mail.value == ""){
window.alert("Sie haben noch keine Mailadresse eingegeben");
document.kontakt.mail.focus();
return false;}

if(document.kontakt.mail.value.indexOf("@")==-1
|| document.kontakt.mail.value.indexOf(".")==-1
|| document.kontakt.mail.value.length<7){
window.alert("Sie haben eine ungültige Mailadresse eingegeben");
document.kontakt.mail.focus();
return false;}

return true;
}

function schreibe() {
document.kontakt.kuenstlertext.value="Bitte hier eintragen mit welcher Kunst!";
document.kontakt.helfenwie.value="Bitte hier die Hilfe eintragen!";
document.kontakt.infowas.value="Bitte hier eintragen welche Info!";
document.kontakt.idee.value="Bitte hier Ihre Idee eintragen!";
document.kontakt.nachricht.value="Bitte hier Ihre Meinung, Stellungnahme, Info an die Wasserkarawane eintragen!";
return;}

function loeschen(n) {
if (n == 1) document.kontakt.kuenstlertext.value="";
if (n == 2) document.kontakt.helfenwie.value="";
if (n == 3) document.kontakt.infowas.value="";
if (n == 4) document.kontakt.idee.value="";
if (n == 5) document.kontakt.nachricht.value="";
return;}

function fopen1 (fenster) {
fen1=window.open(fenster,"win1"," toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes, resizable=no,copyhistory=yes, width=540,height=550,left=50,top=0");
fen1.focus();
return;}

function fopen2 (fenster) {
fen2=window.open(fenster,"win2"," toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes, resizable=no,copyhistory=yes, width=540,height=370,left=50,top=50");
fen2.focus();
return;}