/*
	Oeffnet ein neues Fenster, in dem eine Slideshow ablaufen kann.
	benoetigt die Datei slideshow.js
*/
theImgs = new Array;
pfad = "./images/";
//tail = ".gif"
maxWinWidth = 640; // 20 px weiter als das groesste Bild
maxWinHeight = 420; // 70 px hoeher als des groesste Bild

function popimage(OrgImgName,maxWidth,maxHeight){
	maxWinWidth = maxWidth + 20;
	maxWinHeight = maxHeight + 70;
	imagesrc = pfad+OrgImgName;
	imageRef = "'"+"theImg"+"'";
	var look='width='+maxWinWidth+',height='+maxWinHeight+',';
	popwin=window.open("","",look);
	popwin.document.open();
	popwin.document.write('<html><head><title>Zoom</title></head>');
	popwin.document.write('<body BGCOLOR="#264E96" TOPMARGIN="10"><CENTER><FORM>');
	popwin.document.write('<img src="'+imagesrc+'" ALT="Haben Sie etwas Gedult." WIDTH="'+maxWidth+'" HEIGHT="'+maxHeight+'" NAME="theImg" BORDER="1"><BR><BR>');
	popwin.document.write('<INPUT TYPE="Button" VALUE="SCHLIESSEN" ONCLICK="window.close();">');
	popwin.document.write('</FORM></CENTER></body></HTML>');
	popwin.document.close();
}//function



