Patdundee,
Yes, as BRPS said.
If this can provide the quick fix to get the problem behind, I would be willing to do.
[tt] with (document.dean1) {
custotal.value=custotal.value.toFixed(2);
}[/tt]
(Same syntax can help you make the long reference to document.dean1 spared). This will round to 2 place. If you want truncate to 2 place, then can use Math.floor() like this.
[tt] with (document.dean1) {
custotal.value=Math.floor(custotal.value*100)/100);
}[/tt]
If still have doubt, open a new thread and I am sure members would help.
regards - tsuji