
   	//*** Script zur Realisierung der Änderung eines Buttons in einem anderen Frame *********************************
   	//*** © Copyright 2004 by Daniel Möller, TRNetworX		                                   	   					*
   	//*** --------------------------------------------------------------------------------------------------------- *

   	//*** --------------------------------------------------------------------------------------------------------- *
   	//*** Sie benötigen Hilfe bei Javascript, HTML, XML, PHP, Java, Flash Actionscript, ... Wir helfen Ihnen!		*
   	//*** Gerne senden wir Ihnen die kommentierte Version dieses und anderer Scripte zu								*
   	//*** Rufen Sie unter +49 (0)30 46 79 36 34 an oder senden Sie eine eMail an kontakt\\\@\\\tr-networx.de		*
   	//*** --------------------------------------------------------------------------------------------------------- *

	function load_frameset(location) {
		if (top.frames.length == 0) top.location.href = location;
	}

    function PopUp(URL, Hoehe) {
		if ((screen.height - 80) < Hoehe) {
			Hoehe = screen.height - 80;
		}

		xPos = screen.width - 370;
		var cFenster = window.open(URL, "tkw_Cnt", "width=358,height="+Hoehe+",left="+xPos+",top=50,scrollbars=yes,resizable=no,toolbar=no,directories=no,menubar=no,location=no,status=no");
	}
