function JS_OnLoad() { C=document.getElementById('content_div'); D=document.getElementById('dummy'); C.style.display='none'; C.style.height= ( (document.body.clientHeight ? parseInt(document.body.clientHeight) : innerHeight) - 125) + 'px'; C.style.display='block'; } function JS_FindPos(Dir, E) { var curleft = 0; if(E.offsetParent) { while(E.offsetParent) { curleft += (Dir == "X" ? E.offsetLeft : E.offsetTop); E = E.offsetParent; } } else if(E.x) curleft += (Dir == "X" ? E.x : E.y); return curleft; } function JS_OnResize() { H = window.innerHeight ? window.innerHeight : (window.document.body.clientHeight - 0); E2 = document.getElementById("content_div"); E2.style.height = H - JS_FindPos("Y", E2) -10; } function JS_OnLoad() { this.onresize = JS_OnResize; JS_OnResize(); } function JS_SendBestellung(F) { if(F.NAME.value == "" || F.STRASSE.value == "" || F.ORT.value == "" || F.EMAIL.value == "" || F.BESTELLUNG.value == "") return alert("Bitte alle Pflichtfelder (*) angeben !"); F.submit(); }