<!-- BEGIN MONUMENT MASONRY BID CODE V1.1 Copyright © 2001 - 2009 Rusty Cline  ALL RIGHTS RESERVED.  -->

function vertors(form) {

var spacing = form.inchspace.value*1;
var lengthfeet = form.length.value*12;


form.vertortotal.value= (lengthfeet/spacing);

form.vertorboxtotal.value= (lengthfeet/spacing)/25;

form.vertorboxtotal.value = Math.round(form.vertorboxtotal.value * 1);
                           form.vertorboxtotal.value = form.vertorboxtotal.value / 1;



form.vertortotal.value = Math.round(form.vertortotal.value * 1);
                           form.vertortotal.value = form.vertortotal.value / 1;


form.amount.value = form.vertorboxtotal.value * 45.00;

form.vertorcost.value = form.amount.value;

form.vertorcost.value = Math.round(form.vertorcost.value * 1);
                           form.vertorcost.value = form.vertorcost.value / 1;

}
