// deze functie test of een pagina wel framed is
function Framer(TopUrl) {
	if (top.location.href == window.location.href ) {
		top.location.href = TopUrl;
	}
}
