// JavaScript Document

function lastupdate() {
var dLM = new Date(Date.parse(document.lastModified));

var year = dLM.getFullYear();
var month = dLM.getMonth()+1;
var date = dLM.getDate();

				if (date<10) date = "0"+date;
				if (month<10) month = "0"+month;
				
	document.write("Letzte Aktualisierung: "+date+"."+month+"."+year);
}


function test() {
 document.write("HALLOOOO!!!");
}

function popup(seite) {
 window.open(seite,"KinderReich","width=400, height=400, top=200, left=200, scrollbars=yes, resizable=yes");
}

function slideshow(slseite) {
 window.open("Bilder/Photos/" +slseite,"KinderReich","width=680 height=600, top=50, left=50, scrollbars=yes, resizable=yes");
}

function gotosite(sname) {
 window.opener.location.href=sname;
}

