function zoom(bildquelle, bildbreite, bildhoehe)
{
eigenschaften = "left=50,top=50,width=" + (bildbreite) + ",height=" + (bildhoehe) + ",resizable";
inhalt = "<html><head><title>Golf Club Alvaneu Bad - Zoom</title></head><body bgcolor='white' marginwidth='0' marginheight='0' topmargin='0' leftmargin='0'";
inhalt += "><center><a href='javascript:window.close();'><img src='" + bildquelle + "' border='0' alt='click = Fenster schliessen'></a>";
inhalt += "</center></body></html>";
fenster = window.open("", "", eigenschaften);
fenster.document.open();
fenster.document.write(inhalt);
fenster.document.close();
}
