function big_foto(datei,text)
{
		var newWindow;
		var props = 'scrollBars=no,resizable=yes,toolbar=no,menubar=no,location=no,directories=no,width=680,height=580';
		var winnam = datei.substr(5,datei.length-9);
		newWindow = window.open("",winnam, props);
		newWindow.document.write("<html><head><title>Einzelfoto - PENZING</title></head><body onBlur='window.close()' bgcolor='#91C1B1'>")
		newWindow.document.write("<basefont face='Verdana,Arial,Helvetica'><b>" + text + "</b><br>")
		newWindow.document.write("<img src="+datei+" border=1>")
		newWindow.document.write("<form><input type='button' value='Foto schließen' OnClick='window.close()'></form>")
		newWindow.document.write("</body></html>")
}	

function pan_foto(datei,text)
{
		var newWindow;
		var props = 'scrollBars=yes,resizable=yes,toolbar=no,menubar=no,location=no,directories=no,width=960,height=580';
		var winnam = datei.substr(5,datei.length-9);
		newWindow = window.open("",winnam, props);
		newWindow.document.write("<html><head><title>Einzelfoto - PENZING</title></head><body onBlur='window.close()' bgcolor='#91C1B1'>")
		newWindow.document.write("<basefont face='Verdana,Arial,Helvetica'><b>" + text + "</b><br>")
		newWindow.document.write("<img src="+datei+" border=1>")
		newWindow.document.write("<form><input type='button' value='Foto schließen' OnClick='window.close()'></form>")
		newWindow.document.write("</body></html>")
}	
