<!--
var message="copyright protected";
function clickIE() {if (document.all) {alert(message);return false;}}
function clickNS(e) {if (document.layers||(document.getElementById&&!document.all))
{if (e.which==2||e.which==3) {alert(message);return false;}}}
if (document.layers)
{document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}

// Image-Preloader
image1 = new Image();
image1.src = "pic01.jpg";
// swapImage
function swapImage(imgName,swapImg) {document.images[imgName].src=swapImg;}



function tooltip (id) {
document.getElementById('output').innerHTML = '<img src=' + id + ' />';
document.getElementById('output').style.display = 'block';
}
function tooltipdown () {
document.getElementById('output').style.display = "none";
}

function chkFormular () {
  if (document.Formular.Name.value == "") {alert("Bitte Ihren Namen eingeben!"); document.Formular.Name.focus(); return false;}
/*  if (document.Formular.Straße.value == "") {alert("Bitte Ihre Straße eingeben!"); document.Formular.Straße.focus(); return false;}
  if (document.Formular.Ort.value == "")
     {alert("Bitte Ihren Wohnort mit Postleitzahl eingeben!"); document.Formular.Ort.focus(); return false;}*/
  if (document.Formular.Telefon.value == "")
     {alert("Bitte Ihre Telefonnummer eingeben!"); document.Formular.Telefon.focus(); return false;}
/*  if (document.Formular.eMail.value == "")
     {alert("Bitte Ihre E-Mail-Adresse eingeben!"); document.Formular.eMail.focus(); return false;}
  if (document.Formular.eMail.value.indexOf("@") == -1)
     {alert("Keine E-Mail-Adresse!"); document.Formular.Mail.focus(); return false;}*/
  if (document.Formular.Message.value == "")
     {alert("Bitte Ihre Nachricht eingeben!"); document.Formular.Message.focus(); return false;}
}

-->
