Advertisement
Advertisement
| 03.18.2008 at 04:50PM PDT, ID: 23252205 |
|
[x]
Attachment Details
|
||
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: |
<script>
<!--
function show(street)
{
document.getElementById(box).style.display == 'none';
document.getElementById(street).style.display = 'block';
document.getElementById(street).style.visibility = 'visible';
}
//-->
<!--
function show(box)
{
document.getElementById(street).style.display == 'none';
document.getElementById(box).style.display = 'block';
document.getElementById(box).style.visibility = 'visible';
}
//-->
</script>
<div style="float: left"><input type=radio name="address_type" value="1" checked onClick="show('street');"></div>
<div style="float: left">Physical Address <b>-OR-</b> </div>
<div style="float: left"><input type=radio name="address_type" value="2" onClick="show('box');"></div>
<div style="float: left">Postal Box</div>
<div id="street">
<tr><td>The Street Address fields here/td></tr>
</div>
<div id="box" style="display: none">
<tr><td>The Postal Box fields here</td></tr>
</div>
|