var MaximumPictures = new Array();MaximumPictures[0] = 6; //jeweils eins weniger als die groesste imagenummervar PictureLink = new Array();PictureLink[0] = "http://www.derthiele.de/media/tauscher/ordner";var Monatsname     = ["Januar","Februar","M&auml;rz","April","Mai","Juni","Juli","August","September","Oktober","November","Dezember"];var Tagname        = ["Sonntag","Montag","Dienstag","Mittwoch","Donnerstag","Freitag","Samstag"];function LastUpdate(){	var date = new Date();	date.setTime(Date.parse(document.lastModified));	var changed = Tagname[date.getDay()] +", den "+ date.getDate() +". "+Monatsname[date.getMonth()] +" "+date.getYear();	document.write(changed);}function PopupImage(Bildpfad){	var newWindow = null;	var myImage = new Image;	myImage.src = Bildpfad;	var w = 490; //fixe groesse - anderweitig kompatibilitaetsprobleme	var h = 340;	var LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;	var TopPosition = (screen.height) ? (screen.height-h)/2 : 0;	var argumente = "left="+LeftPosition+", top="+TopPosition+", width="+w+", height="+h+", resizable=no,status=no,toolbar=no,menubar=no,location=no,scrollbars=no";	newWindow = window.open("", "", argumente);	newWindow.document.open();                                 	newWindow.document.write("<html>\n<head>\n");  	newWindow.document.write("<title></title>\n");  	newWindow.document.write("</head>\n<body background=\"../media/images/background_yellow.gif\">\n");           	newWindow.document.write("<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" height=\"100%\">");  	newWindow.document.write("<tr>\n<td align=\"center\" valign=\"middle\">");  	  	newWindow.document.write("<div align=\"center\">");  	newWindow.document.write("<img src=\""+Bildpfad+"\" border=\"0\" hspace=\"0\" vspace=\"0\" align=\"middle\">");  	  	newWindow.document.write("</div>\n");  	newWindow.document.write("</td>\n</tr>\n</table>");  	newWindow.document.write("</body>\n</html>");                         	newWindow.document.close();}function PopupWindow(Zielpfad,w,h){	var newWindow = null;	var LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;	var TopPosition = (screen.height) ? (screen.height-h)/2 : 0;	var argumente = 'left='+LeftPosition+', top='+TopPosition+', width='+w+', height='+h;	newWindow = window.open(Zielpfad, "Popup Fenster", argumente);}function Zufallsbild(kategorie, bildindex) {	var i=Math.round(Math.random()*MaximumPictures[kategorie]) +1;	var a = PictureLink[kategorie] + bildindex + "/tb" + i + ".jpg";	document.write("<img height='80' width='240' src='"+a+"' hspace='1' vspace='5' border='1' name='tauscher"+bildindex+"'>");	var t = Math.round(Math.random()*70000)+30000;	window.setTimeout("RotiereBild("+kategorie+","+bildindex+")",t);}function RotiereBild(kategorie, bildindex) {	var i=Math.round(Math.random()*MaximumPictures[kategorie]) +1;	var a = PictureLink[kategorie] + bildindex + "/tb" + i + ".jpg";	document.images["tauscher"+bildindex].src = a;	var t = Math.round(Math.random()*70000)+30000;	window.setTimeout("RotiereBild("+kategorie+","+bildindex+")",t);}