function check()
{
if(isNaN(document.calc.vx_var11.value) == true)
{
alert("Verbrauch muss eine Zahl sein!");
document.calc.vx_var11.focus();
return false;
}
if(document.calc.vx_var11.value < 10)
{
alert("Verbrauch in Kilowattstunden pro Jahr eingeben!");
document.calc.vx_var11.focus();
return false;
}
if(document.calc.vx_var11.value > 30000)
{
top.location="businessform.php"
return false;
}
if(document.calc.PLZ.value.length < 5)
{
alert("Bitte eine  f&uuml;nfstellige Postleitzahl eingeben");
document.calc.PLZ.focus();
return false;
} 
if(isNaN(document.calc.PLZ.value) == true)
{
alert("Bitte eine  f&uuml;nfstellige Postleitzahl eingeben");
document.calc.PLZ.focus();
return false;
}
}