// JavaScript Document

//Break-out-of-frames script
//If your site uses a frames setup, This script ensures they are not.
//you probably do not want the containing pages to be accessed individually.
//When put inside the page(s) in question,
//the script checks to see if it's inside a frame,
//and redirects users to the main frame page 
//(so the page is viewed inside the frames context) if not.

//if not in frames
if (parent.frames.length==0)
//CHANGE "index.htm" to the URL of your main frame page
window.location.replace("http://www.wimlier.nl/")
