////////////////////////////////////////////////////////////////////////////////////
//  JS_COPYRIGHT.JS (J-Script to show your Copyright)
//  
//  Thank you for using this javascript!
//  
//  This code is distributed WITHOUT ANY WARRANTY
//  ALL Warranties, expressed or implied are hereby disclaimed.
//  The RESELLING of this code is STRICTLY PROHIBITED.
//  This script was created for my personal usage from the start but then it
//  became so popular. It's that version you're using now. Since this is free
//  please don't try to sell this solution to a company claiming it is yours.
//  
//  File:          js_copyright.js
//  Revision:      1.0
//  Author:        Alexander Boehmer
//  Email:         alex.boehmer@micronnect.de
//  URL:           http://www.micronnect.de
//  Created:       16.02.2000
//  Last Modified: --.--.----
//  
//  © 2000 by Alexander Böhmer - All rights reserved
////////////////////////////////////////////////////////////////////////////////////
//  
//  Let me tell you how the script will work:
//  1. Insert the following source to the HEAD-Section of your HTML
//     <script LANGUAGE="JavaScript" src="javascript/js_copyright.js"></script>
//  That´s it -- Good luck
////////////////////////////////////////////////////////////////////////////////////


// Get the message ;-)
var message="Diese Präsentation, sowie alle Texte und Bilder\nsind urheberrechtlich geschützt.\
\n\n© 2004 by Sysponet \n\nAlle Rechte vorbehalten\n\nb.portz@sysponet.de";

// Catch the mouse :-))
function click(e) {
if (document.all) {
if (event.button == 2) {
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;