	// w. jansen web-toolbox.net
	function swap(bildname,tauschbild) {
		document.images[bildname].src=tauschbild;
	}
	
	// if(top.frames.length < 1) top.location.href="frameset.html?" + top.location.href;
	
	
	// Als Übergabeparameter wird die bildquelle, breite und höhe übergeben
	
	function FotoWindow(bildurl,b,h) {

		var eigenschaften,sbreite,shoehe;

		
		// stellt die Bildschirmabmessungen fest
		var ns6 = (!document.all && document.getElementById);
		var ie4 = (document.all);
		var ns4 = (document.layers);
	
		if(ns6||ns4) {
			sbreite = innerWidth;
			shoehe = innerHeight;
		}
		else if(ie4) {
			sbreite = document.body.clientWidth;
			shoehe = document.body.clientHeight;
		}
	
		x = (sbreite-b)/2;
		y = (shoehe-h)/2;
		
		
		var hx = parseInt(h) + 40;
	
		eigenschaften="left="+x+",top="+y+",screenX="+x+",screenY="+y+",width="+b+",height="+hx+",menubar=no,toolbar=no";
	
		fenster=window.open("","",eigenschaften);
		fenster.focus();
		fenster.document.open();

			
		with (fenster) {
			document.write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"\n');
			document.write('"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">\n');
			document.write('<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de"><head>\n');
			document.write('<title>Sorrentino<\/title>\n');
			document.write('<link href="\/css\/triosorrentinocom_popup.css" rel="stylesheet" type="text\/css" \/>\n');
			document.write('<\/head>\n');
			document.write('<body>\n');
//			document.write('<center>\n');
			document.write('<img src="'+ bildurl +'" alt="" \/>\n');
//			document.write('<\/center>\n');
			document.write('<div id="info"><img src="\/images\/popup_info.gif" width="10" height="10" alt="Info" \/>rechte Maustaste + "Bild speichern ..."<\/div>\n');			  
			document.write('<div id="close"><img src="\/images\/popup_schliessen.gif" width="10" height="10" alt="schliessen" \/><a href="javascript:window.close();">fenster schliessen</a><\/div>\n');			  
			document.write('<\/body><\/html>\n');
			fenster.document.close();
		}
	}