 function divresizer(outermargin, innermargin){
    document.getElementById('outerdiv').style.height=document.body.scrollHeight -outermargin;
    document.getElementById('innerdiv').style.height=document.body.scrollHeight -innermargin;
 }
