// General Javascript functions version 1.0 - 18/08/2006


// Framedetection
function frameDetect() {
	// Begin check to see whether this window is opened in its intended frameset
	// If not, redirect the user to the homepage
	if (parent.location.href == self.location.href) {
		window.location.href = 'http://www.marjagroot.nl';
		//window.location.href = 'http://marja';
	}
	//End check-->
}
