/* $Id: ubej.js,v 1.3 2004/04/02 13:26:09 jobs Exp $ */
window.onresize = setHeight;

function setHeight()  {
    if (window.innerHeight) {
        newHeight = window.innerHeight - 170;
    } else {
        newHeight = document.body.clientHeight - 170;
    }
    if (!(document.uniqueID && window.XMLHttpRequest)) { // this is no IE7
        if (newHeight > 300) {
            document.getElementById("content").style.height = newHeight + "px";
        }
    }
}

function chkContact() {
   if (document.contact.name.value == "" ||
       document.contact.email.value == "" ||
       document.contact.mesg.value == "") {
      alert("Bitte füllen Sie alle mit * versehenen Felder aus," +
            " damit wir Ihnen eine gezielte Antwort geben können.");
      return false;
   }
}
