function showFullSize(currentpict, pwidth, pheight,alt){ 
	openPictureWindow(currentpict, pwidth, pheight,alt); 
} 
function openPictureWindow(imageName,imageWidth,imageHeight,alt) 
{ 
imageHeight2 = (1.15)*imageHeight;
	newWindow = window.open("","newWindow","width="+imageWidth+",height="+imageHeight2); 
	newWindow.document.open(); 
	newWindow.document.write('<HTML><TITLE>'+alt+'</TITLE><BODY marginheight=0  marginwidth=0  leftmargin=0  topmargin=0  onBlur="self.close()"  onClick="self.close()" text="#FFFFFF" bgcolor="#000000">'); 
	newWindow.document.write('<table border="0" cellpadding="0" cellspacing="0" height=100% width=100%><tr><td align=center valign=middle>'); 
	newWindow.document.write('<IMG SRC='+imageName+' ALT="'+alt+'">');
	newWindow.document.write('<br><font face="Arial">'+alt+'</font></td></tr></table>'); 
	newWindow.document.write('</BODY></HTML>'); 
	newWindow.document.close(); 
	newWindow.focus(); 
} 



function aufmachen(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}


