/**
* frameloader.js
* -------------------
* Gewährleistet, dass die Seiten immer im Frameset geladen werden.
*
* @author Reto Zahner - 24-7-52.ch GmbH <r.zahner@24-7-52.ch>
* @copyright 24-7-52.ch GmbH - Chur
* @version 1.3 07.05.2003
*
*/

function checkFrame()
{
	if (top.location.href == self.location.href) 
		top.location.href = "/index.php?" + self.location.href;

} // Ende der Funtion checkFrame

function loadFrame()
{
	var sNewLocation = top.location.search.substring(1, top.location.search.length);
	
	alert(sNewLocation);
} // Ende der Methode: loadFrame