/* 
(c)2001-2003 www.parallaxis.de  
 Funktionsbibliothek
*/

function fBack() //Funktion des Browser-Zurueck-Buttons 
{ 
history.back(1);
} 


function fZoom(imageName,imageWidth,imageHeight,bildunterschrift)
// Beispiel Funktionsaufruf: javascript:fZoom('../images/zooms/15_Veilchen.jpg',500,500,'Zimmeransicht Veilchen')"
// Der Parameter bildunterschrift kann weggelassen werden
{ 
if (fZoom.arguments.length>3){
newWindow = window.open("","newWindow","width="+(20+imageWidth)+",height="+(50+imageHeight)+",scrollbars=no");
}else{
newWindow = window.open("","newWindow","width="+(20+imageWidth)+",height="+(40+imageHeight)+",scrollbars=no");
}

newWindow.document.open();
newWindow.document.write('<html><head><title>Ritterhof - benessere</title>');
newWindow.document.write('<link rel=stylesheet ype="text/css" href="../../format.css"><SCRIPT LANGUAGE="JavaScript">
function OpenfensterWindow()
{
window.open("","friend","scrollbars=no,toolbar=no,menubar=no,location=no,width=380,height=500");
}
</SCRIPT>
	</head>');
newWindow.document.write('<body bgcolor="#FFffff" leftmargin="0" topmargin="10" marginheight="10" marginwidth="0" onBlur="self.close()">'); 

newWindow.document.write('<p align="center"><a href="javascript:self.close()"><img src=\"'+imageName+'\"  align="absmiddle" border=0></a>'); 

if (fZoom.arguments.length>3){
newWindow.document.write('<br><b>'+ bildunterschrift+'</b>')
}
newWindow.document.write('<br><a href="javascript:self.close()">chiudere</a></p></body></html>');

newWindow.document.close(); 
newWindow.focus(); 
}



	

	