function pop(img,breite,hoehe)
{


var nwl = (screen.width-breite)/2;
var nwh = (screen.height-hoehe)/2;

fenster=open('','Foto','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width='+breite+',height='+hoehe+',left='+nwl+',top='+nwh+'');
with (fenster) { 
document.write("<html><head>");
document.write("<body style='text-align:center' marginwidth='0' marginheight='0' leftmargin='8' topmargin='3'>"); 
document.write("<div align='center' style='vertical-align:middle; width='100%'>"); 
document.write("<a href='javascript:window.close();'><img src='"+ img +"' style='border: 1px solid black; width:98%; height:94%;' alt='Klicken um Fenster zu schließen'></a><img src='../Seiten_Inhalt/spacer.jpg'style='height:20px;'><img src='../Seiten_Inhalt/logo.jpg' border='0'></div>");

document.write("</body></html>"); 
fenster.document.close(); 
}
}


// Neue Bildanzeige
function showImage(bild){
	top.document.getElementById('inhaltframe').style.display = 'none';
	top.document.getElementById('slideshow').style.visibility = 'hidden';
	top.document.getElementById('bildframe').style.display = 'block';
	top.document.getElementById('bild_gross').src = bild;
	top.document.getElementById('bild_gross').style.marginTop = 6 +'%';
	top.document.getElementById('bild_gross').style.marginLeft = 6 +'%';
}

function closeImage(){	
	top.document.getElementById('slideshow').style.visibility = 'visible';
	top.document.getElementById('inhaltframe').style.display='block';
	top.document.getElementById('bildframe').style.display='none';
}