<!-- Begin
function CalcGeneral() {
origvol = (document.ConcreteGenCal.origvol.value);

document.ConcreteGenCal.cemvol.value = Math.round(((origvol*373.3)/50)*100)/100;
document.ConcreteGenCal.cemwei.value = Math.round((origvol*0.3733)*1000)/1000;
document.ConcreteGenCal.sandvol.value = Math.round((origvol*0.653)*100)/100;
document.ConcreteGenCal.sandwei.value = Math.round((origvol*1.11)*1000)/1000;
document.ConcreteGenCal.gravvol.value = Math.round((origvol*0.914)*100)/100;
document.ConcreteGenCal.gravwei.value = Math.round((origvol*1.46)*1000)/1000;
document.ConcreteGenCal.ballvol.value = Math.round((origvol*1.3)*100)/100;
document.ConcreteGenCal.ballwei.value = Math.round((origvol*2.22)*1000)/1000;
textmessage = 'With this volume of concrete, you should consider using readymix ';
if (origvol <= 1.5){textmessage = 'You could mix this quantity on site but a cement mixer would make it easier.';}
if (origvol <= 0.5){textmessage = 'It is probably easier to mix this quantity by hand.';}
document.ConcreteGenCal.Message.value = textmessage;}

function CalcPaving() {
origvol = (document.ConcretePavCal.origvol2.value);

document.ConcretePavCal.cemvol2.value = Math.round(((origvol*533)/50)*100)/100;
document.ConcretePavCal.cemwei2.value = Math.round((origvol*0.533)*1000)/1000;
document.ConcretePavCal.sandvol2.value = Math.round((origvol*0.56)*100)/100;
document.ConcretePavCal.sandwei2.value = Math.round((origvol*0.952)*1000)/1000;
document.ConcretePavCal.gravvol2.value = Math.round((origvol*0.933)*100)/100;
document.ConcretePavCal.gravwei2.value = Math.round((origvol*1.493)*1000)/1000;
document.ConcretePavCal.ballvol2.value = Math.round((origvol*1.3)*100)/100;
document.ConcretePavCal.ballwei2.value = Math.round((origvol*2.22)*1000)/1000;
textmessage = 'With this volume of concrete, you should consider using readymix ';
if (origvol <= 1.5){textmessage = 'You could mix this quantity on site but a cement mixer would make it easier.';}
if (origvol <= 0.5){textmessage = 'It is probably easier to mix this quantity by hand.';}
document.ConcretePavCal.Message2.value = textmessage;}
//  End -->