function openPictureWindow(imageName,imageWidth,imageHeight,alt,posLeft,posTop) {
		newWindow = window.open("","newWindow","width="+imageWidth+",height="+imageHeight+",left="+posLeft+",top="+posTop);
		newWindow.document.open();
		newWindow.document.write('<html><head><title>'+alt+'</title></head><body bgcolor="#605956" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onBlur="self.close()">');
		newWindow.document.write('<img src='+imageName+' width='+imageWidth+' height='+imageHeight+' alt='+alt+'>');
		newWindow.document.write('</body></html>');
		newWindow.document.close();
		newWindow.focus();
}


function korrekteDezimal(verschluesselteMail){					
			abstand = 3;
			DeziAusgabe = "";
			zahlen = verschluesselteMail.split(" ");
			laenge = zahlen.length;
			for (i=0;i<laenge;i++) {
				neueZahl = eval(parseInt(zahlen[i]) - abstand);
				DeziAusgabe = DeziAusgabe + neueZahl;
				if ((i+1) != laenge) DeziAusgabe = DeziAusgabe + " ";
			}
			korrekteZahlen = DeziAusgabe.split(" ");
			laengeArray = korrekteZahlen.length;
			MailAusgabe = "";
			for (i=0;i<laengeArray;i++) {
				zeichen = String.fromCharCode(korrekteZahlen[i]);
				MailAusgabe = MailAusgabe + zeichen;
			}
			document.write( "<a href='mailto:" + MailAusgabe + "'>"); 
			document.write( MailAusgabe );
			document.write( '<\/a>' ); 
		}
