pccode
10-13-2005, 09:32 AM
Add the following to the head portion of the managecart.html page.
<script>
var called = 1;
function setSubtotal() {
if (called < 3) {
document.calc2.loan2.value = TOTotal;
setTimeout("setSubtotal()","10");
} else {
called = 0;
}
called++;
}
</script>
Add the following to your <body> tag.
onload="MM_preloadImages('file:///F|/Quote%20Program/program1/images/back_dn.jpg'); setSubtotal();"
Add the following to the reset tag.
onclick="setSubtotal()"
<script>
var called = 1;
function setSubtotal() {
if (called < 3) {
document.calc2.loan2.value = TOTotal;
setTimeout("setSubtotal()","10");
} else {
called = 0;
}
called++;
}
</script>
Add the following to your <body> tag.
onload="MM_preloadImages('file:///F|/Quote%20Program/program1/images/back_dn.jpg'); setSubtotal();"
Add the following to the reset tag.
onclick="setSubtotal()"
