if (parent.frames.length==0)
{
	var page = document.location.href;
	var indexofstring= page.indexOf("pages/");
	var pageonly= page.substring((indexofstring+6),(page.length-4));
	
	var site = "http://www.landwehr.ch/index.php?insertpage=";
	var url = site+pageonly;
	
	location.replace(url);;
}
