	function framesaktualisieren(strFrame,urlSeite)
	{
		if (!top.frames.length>0) {return;}
		top.frames[strFrame].document.location=
			urlSeite;
		return;
	}  

	function framesetmaximieren()
	{
		if (top.frames.length>0)
		{
			top.document.location=self.location;
		}
	}



	function max()
	{
		self.moveTo(0,0);
		self.resizeTo(screen.width, screen.height);
		return;
	}

	function framesetladen(strTitel, UrlStartseite,UrlIndex)
	{
		//Prüfen ob ein Frameset geladen ist
		if(!top.frames.length>0)
		{
			window.location=UrlIndex;
		}
		else
		{
			//Wenn Frameset geladen, prüfen ob es das
			//richtige ist!
			if (top.document.title!=strTitel)
			{
				top.location=UrlStartseite;
			}			
		}
	}
