function noRightClick(evnt){
	errMsg="STOP -- STOP -- STOP -- Stop -- STOP -- STOP -- STOP -- STOP -- STOP\n"+
	"STOP -- STOP -- STOP -- STOP -- STOP -- STOP -- STOP -- STOP\n\n"+
	"All words, infonmations & pictures are subject of copyright of:\n"+
	"Guitar-Center -- www.e--team.de -- Guitar-Broker-Europe\n"+
	"Download verboten - Don`t download objects from this side`s!\n\n"+
	"STOP -- STOP -- STOP -- Stop -- STOP -- STOP -- STOP -- STOP -- STOP -- STOP\n"+
	"STOP -- STOP -- STOP -- STOP -- STOP -- STOP -- STOP";

	if (navigator.appName.toUpperCase().match(/NETSCAPE/) != null){
		if (evnt.which == 3){
			alert(errMsg);
			return false;
		}
	}
	else if(event.button==2)alert(errMsg);
}
document.onmousedown=noRightClick;



// Scrolltext
function stopBanner() {
	if (bannerAn)
	        clearTimeout(timerID)
	bannerAn = false
}
 
function startBanner() {
	stopBanner()
	showBanner()
}
 
function showBanner() {
	var text = ar[currentMessage]

	if (offset < text.length) {
	        if (text.charAt(offset) == " ")
	                offset++
	        var partialMessage = text.substring(0, offset + 1)
	        window.status = partialMessage
	        offset++
	        timerID = setTimeout("showBanner()", geschw)
	        bannerAn = true
	} else {
	        offset = 0
	        currentMessage++
	        if (currentMessage == ar.length)
	                currentMessage = 0
	        timerID = setTimeout("showBanner()", pause)
	        bannerAn = true
	}
}
