function ZweiFrames(URL1,F1,URL2,F2)
{
  parent.frames[F1].location.href=URL1;
  parent.frames[F2].location.href=URL2;
}

function Meld(text)
{
        alert(text);

}

function BildGrossOeffnen(Bild)
{
        WinGross = window.open("MotiveBildGross.htm", "GrossBild", "Width=screen.availWidth,Height=screen.availHeight");
//      Vollbild        WinGross.resizeTo(screen.availWidth,screen.availHeight)
//        WinGross.document.BildGross.src = Bild;
//        WinGross.BildGross.src = Bild;
        WinGross.document.images[0].src = Bild;
        WinGross.focus();
}

function BildGrossStOeffnen(Bild)
{
        WinGrossSt = window.open("StBildGrosshome.htm", "StandortGrossBild", "Width=screen.availWidth,Height=screen.availHeight");
        WinGrossSt.resizeTo(screen.availWidth,screen.availHeight)
        WinGrossSt.moveTo(0,0);
//        WinGrossSt.document.BildGross.src = Bild;
//        WinGrossSt.BildGross.src = Bild;
        WinGrossSt.frames[0].document.images[0].src = Bild;
        WinGrossSt.focus();
}


