function vergroessern ( src ) {
	
	mp = window.open ('about:blank', 'dynpopup', 'width=500,height=400,scrollbars=yes');
	
	mp.document.open ();
	
	mp.document.writeln ("<html><head><title>Vergrößerung des Bildes</title></head><body bgcolor='#ff9966'>");
	mp.document.writeln ("<div align=center>");
	mp.document.writeln ("<a href='#' onClick='window.self.close()'>");
	mp.document.writeln ("<img src='photos/"+src+"' border=0>");
	mp.document.writeln ("</a></div></body></html>");
	
	mp.document.close();
	
	mp.focus();
	
	}