// ### Version 3.0 (02.01.2006) ###
<!--
if (document.layers) {
	window.captureEvents(Event.MOUSEDOWN | Event.MOUSEUP)
	window.onmousedown=rightclick;
	window.onmouseup=rightclick;

	function rightclick(e) {
		if (e.button==2||e.button==3) {
			alert('Internetstadtplan.de\n-----------------------------\n(C)opyright 2000-2006 VWW - VERLAG WIRTSCHAFT & WERBUNG\n\nVersion 3.0');
			return false;
			}
		else {
			return true;
			}
		}//function rightclick()
	}//if(document.layers)

if (document.all) {
	function click() {
		if (event.button==2) {
			alert('Internetstadtplan.de\n-----------------------------\n(C)opyright 2000-2006 VWW - VERLAG WIRTSCHAFT & WERBUNG\n\nVersion 3.0');
			}
		if (event.button==3) {
			alert('Internetstadtplan.de\n-----------------------------\n(C)opyright 2000-2006 VWW - VERLAG WIRTSCHAFT & WERBUNG\n\nVersion 3.0');
			}
		}

	document.onmousedown=click
	}
// -->

