// JavaScript Document
function huurberekenen() {
// berekenen kostprijs huizen en hotels o.b.v huuronbebouwd
window.document.getElementById('huur0huis').innerHTML=window.document.form.huuronbebouwd.value;
window.document.getElementById('huur1huis').innerHTML=window.document.form.huuronbebouwd.value*5;
window.document.getElementById('huur2huis').innerHTML=window.document.form.huuronbebouwd.value*15;
window.document.getElementById('huur3huis').innerHTML=window.document.form.huuronbebouwd.value*40;
window.document.getElementById('huur4huis').innerHTML=window.document.form.huuronbebouwd.value*50;
window.document.getElementById('huur1hotel').innerHTML=window.document.form.huuronbebouwd.value*60;

//berekenen kosten huizen, hotels en hypotheekwaarde
window.document.getElementById('huisprijs').innerHTML=(window.document.form.huuronbebouwd.value*50)/10;
window.document.getElementById('hotelprijs').innerHTML=(window.document.form.huuronbebouwd.value*50)/10;
window.document.getElementById('hypotheekwaarde').innerHTML=(window.document.form.huuronbebouwd.value*50)/10;

}
