/*
'-------------------------------------------------------------------------
' security.js
'-------------------------------------------------------------------------
'
' Copyright     (C) 2001  ib-tool GmbH
'
' Titel         Security
'
'-------------------------------------------------------------------------
'
'               Version:                Author:                 Date:
' Ident.        1A                      MB					30.08.2001
'               (created)				
'																							
'-------------------------------------------------------------------------
'
' Beschreibung	rechte Mousetaste inaktiv
'-------------------------------------------------------------------------
*/
if (document.layers){
	/* ab Netscape 6.x*/
	if (document.getElementById&&!ie2) {
		window.captureEvents(Event.MOUSEDOWN | Event.MOUSEUP);
		window.onmousedown=rightclick;
		window.onmouseup=rightclick;
		
		function rightclick(e) {
		if (e.which == 3) {
		alert('copyright by  -  ib-tool GmbH');
		return false; 
		}
		else {
			return true; 
			}
		}
	}
}

if (document.all){
    function click() {
		if (event.button==2) {
		alert('copyright by  -  ib-tool GmbH');
		}
    
		if (event.button==3) {
		alert('copyright by  -  ib-tool GmbH');
		}
    }
    document.onmousedown=click;
}



