<!--
function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}} }

function oeffne(bild,breite,hoehe)
{
xsize = breite+0;// Rand rechts und links
ysize = hoehe+0; //Rand oben und unten

ScreenWidth = screen.width;
ScreenHeight = screen.height;

xpos = (ScreenWidth/2)-(xsize/2);
ypos = (ScreenHeight/2)-(ysize/2);
   NewWindow=window.open("","bild","height="+ysize+",width="+xsize+",scrollbars=no,resizable=yes,top="+ypos+",left="+xpos+"");
        NewWindow.document.write ("<html><head><title>Copyright by Garten- und Landschaftsbau Peter Bauer GmbH</title></head>");
        NewWindow.document.write ("<body bgcolor='#ffffff' onload='focus()'>");
        NewWindow.document.write ("<table align='center'>");
        NewWindow.document.write ("<a href='#' onClick='self.close()'><img border='0' alt='Hier schliessen!' src=");
        NewWindow.document.write (bild);
        NewWindow.document.write ("></a></table></body></html>");
        NewWindow.document.close();
        NewWindow.resizeTo(xsize,ysize);
}

function wechsel(bild, ziel)
         {
         window.document.images[ziel].src=bild;  }

function popup()
{
    var URL = "wintertage.html";
    var Name = "popup";
    var Fensteroptionen = "toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0";
    var Breite = 260;
    var Hoehe = 520;
    window.open(URL, 'Name', Fensteroptionen + ',width=' + Breite + ',height=' + Hoehe);
}


-->