//Rechtermuisklik uitschakelen
function click() {
if (event.button==2) {
alert('Rechtermuisknop heeft hier geen functie');
}
}
document.onmousedown=click
// -->


//Break-out-of-frames script
//By JavaScript Kit (http://javascriptkit.com)
//Over 400+ free scripts here!
//if not in frames
if (parent.frames.length==0)
//CHANGE "index.htm" to the URL of your main frame page
window.location.replace("index.htm")
//-->

