function loadInSmallWindow(URL)
{
        F = window.open(URL,"SmallWindow","width=730,height=450,resizable=yes");
        F.focus();
}

function loadInSmallWindowS(URL)
{
        F = window.open(URL,"SmallWindow","width=710,height=550,resizable=yes,scrollbars=yes");
        F.focus();
}

function ladeFenster(URL,NAME,WIDTH,HEIGHT,SCROLLBAR)
{
	var eigenschaften;
	WIDTH=WIDTH+20;
	HEIGHT=HEIGHT+25;
        eigenschaften="width="+WIDTH+",height="+HEIGHT+",resizable=yes,scrollbars="+SCROLLBAR;
        
	F = window.open(URL,NAME,eigenschaften);
        F.focus();
}


function MyFrame(URL1,F1)
 {  
  parent.frames[F1].location.href=URL1;
 }

function MyFrames(URL1,F1,URL2,F2)
 {  
  parent.frames[F1].location.href=URL1;
  parent.frames[F2].location.href=URL2;
 }


function Bildwechsel(Bildnr,Bildobjekt) {
 window.document.images[Bildnr].src = Bildobjekt.src;
}

function ErzeugeGrafik(NAME,URL){
  NAME = new Image();
  NAME.src = URL;     
}
