function openLinkL(name)
{
	parent.frames[3].location.href = "/navileiste.php?link="+name
}

function closeall()
	{
		parent.frames(2).location.href = "navigation.htm"
	}
	
	function openLink(link)
	{
		openLinkL(link);
		if (link != "none") 
		{
			parent.frames[4].location.href = link;
		}
	}
function OpenNewWindow(doc,Breit,Hoch)
{
xsize = Breit+35;// Zusatz für Rand rechts und links
ysize = Hoch+75; //Zusatz für Rand oben und unten - damit Button angezeit werden kann

ScreenWidth = screen.width;
ScreenHeight = screen.height;

xpos = (ScreenWidth/2)-(xsize/2);
ypos = (ScreenHeight/2)-(ysize/2);

        NewWindow=window.open(doc,"Picture","height="+ysize+",width="+xsize+",scrollbars=yes,resizable=no,top="+ypos+",left="+xpos+"");
        NewWindow.resizeTo(xsize,ysize);
}
