// Initialisiert die Form in "guestbookentry.jsp"
function initGuestbookForm() {
	document.getElementById("GuestbookForm").gName.focus();
}

// Initialisiert die Form in "announcement.jsp"
function initAnnouncementForm() {
	document.getElementById("AnnouncementForm").aTitle.focus();
}

// Fuegt die Smileys in das Mitteilungsfeld des Gaestebuchs ein in "guestbookentry.jsp"
function smiley(aSmiley) {
	document.getElementById("GuestbookForm").gMessage.value += aSmiley;
	document.getElementById("GuestbookForm").gMessage.focus();
}
function delayer(){
	nextImgIdx = 3;
	window.location = "snapshot.jsp?imgIdx=" + nextImgIdx;
}
//window.window.document.body.onload = window.setTimeout(delayer(), 5000);
//window.onload = window.setTimeout(delayer(), 5000);
//window.document.body.onload="window.setTimeout(delayer(), 5000)";

