
/*copyeng.js
* Copyright (c) 2007 Hedwig Vanhaevre. All Rights Reserved.
*/


<!--
var message="Copyright 2007 by Hedwig Reunes-Vanhaevre.\nWARNING ! All content contained within this site is protected by copyright laws.\n\nYou can freely use my pictures for a project or report for school.\nBUT\nPlease ask before using text or pictures in your homepage.";
function click(e) {
if (document.all) {
if (event.button==2||event.button==3) {
alert(message);
return false;
}
}
if (document.layers) {
if (e.which == 3) {
alert(message);
return false;
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;
// -->

//end