Help for this page
<script type='text/javascript'> function formatNumber(myElement) { // JavaScript function to inser +t thousand separators ... <!-- in the html page --> <input name="amount" id="amount" type="text" onkeyup="formatNumber(thi +s);">
sub thousandformat { # Formats number with thousand separators my ($number) = @_; ... else { $currnb .= ".00"; } return $currnb; }