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 > 100000)
		{
			top.location=top.location + "?phpurl=businessform.php"
			return false;
		}
		
	if(document.calc.PLZ.value.length < 5)
		{
			alert("Bitte eine  fÃŒnfstellige Postleitzahl eingeben");
			document.calc.PLZ.focus();
			return false;
		} 
		
	if(isNaN(document.calc.PLZ.value) == true)
		{
			alert("Bitte eine  fÃŒnfstellige Postleitzahl eingeben");
			document.calc.PLZ.focus();
			return false;
		}
}
