
var msg="Alle Rechte vorbehalten (c) 2008 Andreas Lindrum "; 
if (document.layers) document.captureEvents(Event.MOUSEDOWN); document.onmousedown=norightclick;
function norightclick(e) { if ((document.all) && (event.button==2)) { alert(msg); return false; } if ((document.layers) && (e.which==3)) { alert(msg); return false; } return true; }

var trailLength = 1; // The length of trail
var path = "comic1.gif"; // URL to cursor image
var isIE = false, isNav = false, range = "all.", style = ".style", i, d = 0;
var topPix = ".pixelTop", leftPix = ".pixelLeft", images, storage;
if (document.layers) {
isNav = true, range = "layers.", style = "", topPix = ".top", leftPix = ".left";
} else if (document.all) {
isIE = true;
}
function initTrail() {
images = new Array();
for (i = 0; i < parseInt(trailLength); i++) {
images[i] = new Image();
images[i].src = path;
}
storage = new Array(); 
for (i = 0; i < images.length*3; i++) {
storage[i] = 0;
}
for (i = 0; i < images.length; i++) { // make divs for IE and layers for Navigator
(isIE) ? document.write('<div id="obj' + i + '" style="position: absolute; z-Index: 100; height: 0; width: 0"><img src="' + images[i].src + '"></div>') : document.write('</layer>');
}
trail();
}
function trail() {
for (i = 0; i < images.length; i++) {
eval("document." + range + "obj" + i + style + topPix + "=" + storage[d]);
eval("document." + range + "obj" + i + style + leftPix + "=" + storage[d+1]);
d = d+2;
}
for (i = storage.length; i >= 2; i--) {;
storage[i] = storage[i-2];
}
d = 0;
clearTimeout(timer);
var timer = setTimeout("trail()", 10);
}
function processEvent(e) { 
if (isIE) {
storage[0] = window.event.y+document.body.scrollTop+10;
storage[1] = window.event.x+document.body.scrollLeft+10;
} else {
storage[0] = e.pageY+12;
storage[1] = e.pageX+12;
}
}
if (isNav) {
document.captureEvents(Event.MOUSEMOVE);
}
if (isIE || isNav) {
initTrail();
document.onmousemove = processEvent;
}

function todayDate()
{
now = new Date();
day = now.getDate();
month = now.getMonth();
year = now.getFullYear();
wordDate = new Array(11)
wordDate[0] = "Januar";
wordDate[1] = "Februar";
wordDate[2] = "Maerz";
wordDate[3] = "April";
wordDate[4] = "Mai";
wordDate[5] = "Juni";
wordDate[6] = "Juli";
wordDate[7] = "August";
wordDate[8] = "September";
wordDate[9] = "Oktober";
wordDate[10] = "November";
wordDate[11] = "Dezember";
document.write("<div>")
document.write(day)
document.write(". ")
document.write(wordDate[month])
document.write(" ")
document.write(year)
document.write("</div>")
}
function chkFormular()
  {
  if(document.Formular.Betreff.value == "")
    {
     alert("Bitte Ihren Betreff eingeben!");
     document.Formular.Betreff.focus();
     return false;
    }
   if(document.Formular.Name.value == "")
    {
     alert("Bitte Ihren Namen eingeben!");
     document.Formular.Name.focus();
     return false;
    }

if(document.Formular.email.value.indexOf('@') == -1)
    {
     alert("Dies ist keine gültige E-Mail Adresse!");
     document.Formular.email.focus();
     return false;
    }

if(document.Formular.Text.value == "")
    {
     alert("Sie haben ihren eigentlichen Bezugstext vergessen!");
     document.Formular.Text.focus();
     return false;
    }
	if(document.Formular.daten.checked == false)
    {
     alert("Bitte geben Sie an, ob Sie unsere Erklärung zum Datenschutz gelesen haben!");
     return false;
	 }else return true;
    }
	
var empfaenger = "info";
var domain ="arztpraxis-lindrum.de";
var at = String.fromCharCode(64);	
		
function disableselect(e){
return false
}
function reEnable(){
return true
}
document.onselectstart=new Function ("return false")
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}

// -->

// End -->