<!-- Begin
function compute(form) {
var volumecalc = (form.length.value * form.width.value * form.depth.value) * 7.50;
volumecalc = twoDecs(volumecalc);
form.volume.value = volumecalc;
}
function twoDecs(item) {
return eval(parseInt(item * 100) * .01);
}
//  End -->

