// Statuszeile

var text = "http://www.kunstgemeinde.de"
var speed = 100
var x = 0
function bb() {
var a = text.substring(0,x)
var b = text.substring(x,x+1).toUpperCase()
var c = text.substring(x+1,text.length)
window.status = a + b + c
if (x == text.length) {
x = 0
}
else {
x++
}
setTimeout("bb()",speed)
}

bb();



//Global function for opening pdf documents in the same new window.
function loadPDF(strURL) {
        var pdfwin = window.open(strURL,"pdfwin","scrollbars=yes,resizable=yes");
        pdfwin.focus();
}



// Rechte Maustaste
function opendetailwindow() {
 window.open('','detailwindow','toolbar=no,scrollbars=yes,resizable=no,width=680,height=480');
}

function right(e) {
 if (navigator.appName == 'Netscape' && (e.which == 2 || e.which == 3)) {
   alert("© Copyright by Evolutionswege.de");
   return false;
 }
 else if (navigator.appName == 'Microsoft Internet Explorer' && (event.button==2 || event.button == 3)) {
   alert("© Copyright by Juán Cárlos López-Nicklaus");
   return false;
 }
 return true;
}
document.onmousedown=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
window.onmousedown=right;
