
function austausch (bildpos,bildneu)
	{
	document.images[bildpos].src="img/"+bildneu;
	}

function popUp (URL, x, y)
{
 desktop= window.open (URL, "_blank", "toolbar=no, location=no, status=no, menubar=no, scrollbars=no, width="+x+", height="+y+", resizable=no,left=0,top=0");
}

function Bilder (bildpos,bildneu,breite,hohe)
{
//var string =  '<a href="javascript:Bilder(9, 'FotoMain2.jpg', 376, 510, '')">Foto 1</a> &middot; Foto 2';
document.images[bildpos].src="img/"+bildneu;
document.images[bildpos].width=breite;
document.images[bildpos].height=hohe;
/* document.all.Photo.innerHTML = neuertext; */
}

function CheckID (theForm)
   {
     var check= true;
     if (document.kontakt.email.value == '')
     {
     check = false;
     alert ('Bitte E-mail eintragen!');
     }
     if (check)
     {
       document.kontakt.submit();
     }
   }
function Delete (theForm)
 {
  document.kontakt.comments.value ='';
  document.kontakt.name.value ='';
  document.kontakt.vorname.value ='';
  document.kontakt.email.value ='';
 }
 
 function CheckEintrag (theForm)
   {
     var check= true;
     if (document.add.wochentag.value == 'nix')
     {
     check = false;
     alert ('Wochentag ist nicht ausgewählt!');
     }
     else if (document.add.tag.value == 'nix')
     {
     check = false;
     alert ('Tag ist nicht ausgewählt!');
     }
     else if (document.add.monat.value == 'nix')
     {
     check = false;
     alert ('Monat ist nicht ausgewählt!');
     }
     else if (document.add.jahr.value == 'nix')
     {
     check = false;
     alert ('Jahr ist nicht ausgewählt!');
     }
     else if (document.add.stunden.value == 'nix')
     {
     check = false;
     alert ('Uhrzeit ist unvöllständich!');
     }
     else if (document.add.minuten.value == 'nix')
     {
     check = false;
     alert ('Uhrzeit ist unvöllständich!');
     }
     else if (document.add.was.value == '')
     {
     check = false;
     alert ('Nicht alle Felder sind ausgefühlt!');
     }
     else if (document.add.wo.value == '')
     {
     check = false;
     alert ('Nicht alle Felder sind ausgefühlt!');
     }
     if (check)
     {
       document.add.submit();
     }
   }
