// Zeigt die SubNav an

function show(a) {
	if(a==1 && document.getElementById("subnav-hide")) {
		document.getElementById("subnav-hide").id = "subnav";
		}
	if(a==0 && document.getElementById("subnav")) {
		document.getElementById("subnav").id = "subnav-hide";
		}
	}

// Formular Check
function CheckIt ()
    {
        if(document.forms[0].elements[10].value=="")
        {
           alert("Bitte geben Sie Ihre Telefonummer an!");
           document.forms[0].elements[10].focus();
           return false;
        }
	}