Advertisement
Advertisement
| 08.02.2008 at 02:15PM PDT, ID: 23616637 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: |
<html>
<head>
<meta http-equiv="Content-Language" content="en-us">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Bank Reconcilliation</title>
<script type="text/javascript">
function process(o)
{
if (o.value == '') {
o.value='0.00';
}
if ( !isNaN(o.value) && parseInt(o.value,10) >= 0 ) {
o.style.color='#0000FF'}else{o.style.color='#FF0000'
}
}
</script>
</head>
<body>
<table border="0" width="400">
<tr>
<td>Site</td>
<td>Date</td>
<td>Current Amount</td>
<td>Bank Amount</td>
</tr>
<tr>
<td>0002</td>
<td>8/1/2008</td>
<td>$4500.23</td>
<td>
<input type="text" value="0.00" onfocus="if (this.value == '0.00') { this.value=''; }" onblur="process(this);" name="Bank1" size="6" style="font-family: Verdana; color: #999999; border: 1px solid #DDDDDD; background-color: #DDDDDD"
/></td>
</tr>
<tr>
<td>0002</td>
<td>8/2/2008</td>
<td>$3879.65</td>
<td>
<input type="text" value="0.00" onfocus="if (this.value == '0.00') { this.value=''; }" onblur="process(this);" name="Bank2" size="6" style="font-family: Verdana; color: #999999; border: 1px solid #DDDDDD; background-color: #DDDDDD"
/></td>
</tr>
<tr>
<td>0002</td>
<td>8/3/2008</td>
<td>$5178.18</td>
<td>
<input type="text" value="0.00" onfocus="if (this.value == '0.00') { this.value=''; }" onblur="process(this);" name="Bank3" size="6" style="font-family: Verdana; color: #999999; border: 1px solid #DDDDDD; background-color: #DDDDDD"
/></td>
</tr>
<tr>
<td colspan="2">Total For Site 0002</td>
<td>
$13558.05<td>
<input type="text" name="BankTotal" size="6" style="font-family: Verdana; color: #999999; border: 1px solid #DDDDDD; background-color: #DDDDDD"
/></td>
</tr>
</table>
</body>
</html>
|