//Steuert den Bildwechsel auf der Startseite
function zufallsbild(){
	var jetzt = new Date();
	var index = (jetzt.getSeconds() % 7) + 1;
	this.document.hallo.src = "/KFV/Bilder/welcome/pic_" + index + ".jpg";	
	this.document.titel.src = "/KFV/Bilder/welcome/tit_" + index + ".png";	

//	this.document.hallo.src = "/KFV/Bilder/welcome/pic_0.png";	
//	this.document.titel.src = "/KFV/Bilder/welcome/tit_0.png";	
//	this.document.hallo.src = "/Bilder/welcome/Neujahr2007.jpg";	
//	this.document.hallo.src = "/Bilder/welcome/Ostern2006.jpg";	
//	this.document.hallo.src = "/Bilder/welcome/Weihnacht2006.jpg";	
//	this.document.hallo.src = "/Bilder/welcome/Update.jpg";	
}


//Übergibt das Aktualisierungsdatum
function update(){
  var Tag = "31";
  var Monat = "05";
  var Jahr = "2007";
  this.document.Tag.src = "/KFV/Bilder/welcome/" + Tag + ".gif";
  this.document.Monat.src = "/KFV/Bilder/welcome/" + Monat + ".gif";
  this.document.Jahr.src = "/KFV/Bilder/welcome/" + Jahr + ".gif";
}



//Vorschaufunktion bei der Terminmitteilung
function Vorschau()
{
	    var winProperties = "toolbar=no,location=no,directories=no,status=no,copyhistory=no,width=600,height=200,resizable=no,screenX=0,screenY=0";
	    var FensterName = "Terminvorschau";
	    MeinFenster = window.open("Terminvorschau.php", FensterName, winProperties);
	    MeinFenster.focus();
	    self.opener = self;
	    self.close();
}

