function FensterOeffnen (Adresse) {
Fenster1 = window.open(Adresse, "Zweitfenster", "width=320,height=530");
Fenster1.focus();
}

function bildladen(xbild) {
	Bild = new Image();
	Bild.src = xbild;
	document.images[0].src = Bild.src;
}

var myWin=0;                    /* globale picwin-Variable */


function close_picture()
{
  if (myWin)                              /* wenn existent */
    if (!myWin.closed)                  /* wenn noch offen */
      myWin.close();                            /* mach zu */
}



function popwindow(newUrl) {
	close_picture();

	myWin= open("popwin.htm", "MGM", "width=15,height=15,left=0,top=0,menubar=no,toolbar=no,status=no,scrollbars=no,resizable=no");

	var myWidth=380;
	var myHeight=560;

	for ( x = 15; x < myWidth; x=x+5){
		myWin.resizeTo(x,25);
	}

	for ( y = 25; y < myHeight; y=y+5){
		myWin.resizeTo(x,y);
	}			
	
	myWin.resizeTo(378,y);
	
	myWin.document.location.href = newUrl;
	myWin.focus();

}

function popwindow_g(newUrl) {
	close_picture();

	myWin= open("popwin.htm", "MGM", "width=15,height=15,left=0,top=0,menubar=no,toolbar=no,status=no,scrollbars=no,resizable=no");

	var myWidth=780;
	var myHeight=560;

	for ( x = 15; x < myWidth; x=x+5){
		myWin.resizeTo(x,25);
	}

	for ( y = 25; y < myHeight; y=y+5){
		myWin.resizeTo(x,y);
	}			
	
	myWin.resizeTo(778,y);
	
	myWin.document.location.href = newUrl;
	myWin.focus();

}
