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;
}

function popwindow(newUrl) {
	myWin= open("linksseite.htm", "Links", "width=15,height=15,left=0,top=0,menubar=yes,toolbar=yes,status=yes,scrollbars=yes,resizable=yes");
	for ( x = 15; x < 1000; x=x+5){
		myWin.resizeTo(x,25);
	}

	for ( y = 25; y < 750; y=y+5){
		myWin.resizeTo(x,y);
	}			
	myWin.document.location.href = newUrl;
}

