Forum Moderators: open
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang="en-US">
<head>
<title>Capital Gains</title>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Cache-Control" content="no-cache" />
<meta http-equiv="expires" content="0" />
<!--
Based on the page at [allstates1031.com...]
-->
<script type="text/javascript">
<!-- Hide this code from non-JavaScript browsers
function Calc1() { // basis
f1=document.forms[0]; // abbreviation
base_price=f1.base_price.value;
base_add =f1.base_add.value;
base_less =f1.base_less.value;
base_net=base_price*1 + base_add*1 - base_less;
f1.base_net.value=base_net;
f1.gain_basis.value=base_net;
}
function Calc2() { // gain
f1=document.forms[0]; // abbreviation
gain_price=f1.gain_price.value;
gain_basis=f1.gain_basis.value;
gain_cost =f1.gain_cost.value;
gain_gain=gain_price - gain_basis - gain_cost;
f1.gain_gain.value=gain_gain;
tax_fed=gain_gain*15/100;
f1.tax_fed.value=tax_fed;
}
function Calc3() { // fed
f1=document.forms[0]; // abbreviation
gain_gain=f1.gain_gain.value;
tax_fed=gain_gain*15/100;
f1.tax_fed.value=tax_fed;
}
function Calc4() { // state
f1=document.forms[0]; // abbreviation
tax_rate=f1.tax_rate.value;
tax_st=gain_gain*tax_rate/100;
f1.tax_st.value=tax_st;
tax_fed=f1.tax_fed.value;
tax_due=tax_fed*1 + tax_st*1;
f1.tax_due.value=tax_due;
}
function Calc5() { //
f1=document.forms[0]; // abbreviation
tax_st=f1.tax_st.value;
tax_fed=f1.tax_fed.value;
tax_due=tax_fed*1 + tax_st*1;
f1.tax_due.value=tax_due;
}
// End hiding -->
</script>
</head>
<body background="jaa_bgnd.jpg" bgcolor="#ffffee" text="black"
link="blue" vlink="#800088" alink="red">
<!-- Page Header -->
<center><h1>Capital Gains</h1></center>
<hr />
<!-- Content -->
<noscript>
<font color="red">
You must have javascript to make use of this page.
</font>
</noscript>
<center>
<!-- enctype="multipart/form-data" -->
<!-- enctype="text/plain" -->
<form method="post" action="">
<br />
<table border="0" cellspacing="2" cellpadding="2"
summary="This table is used for layout purposes only.">
<tbody>
<tr>
<td align="left" colspan="3">
<b>Net Adjusted Basis Calculation</b>
</td>
</tr>
<tr>
<td align="left" colspan="2">
Original Purchase Price of Relinquished Property
</td>
<td align="right">
$
<input type="text" value="0" name="base_price" id="base_price" onfocus="this.select();" onblur="Calc1();" />
</td>
</tr>
<tr>
<td align="left">Add:</td>
<td align="left">Improvements (not expensed)</td>
<td align="right">
<input type="text" value="0" name="base_add" id="base_add" onfocus="this.select();" onblur="Calc1();" />
</td>
</tr>
<tr>
<td align="left">Less:</td>
<td align="left">Depreciation</td>
<td align="right">
<input type="text" value="0" name="base_less" id="base_less" onfocus="this.select();" onblur="Calc1();" />
</td>
</tr>
<tr>
<td align="left">Equals:</td>
<td align="left">Net Adjusted Basis</td>
<td align="right">
<input type="text" value="0" name="base_net" id="base_net" onfocus="this.select();" onblur="Calc1();" />
</td>
</tr>
<tr>
<td align="left" colspan="3"> </td>
</tr>
<tr>
<td align="left" colspan="3">
<b>Capital Gain Sales Price</b>
</td>
</tr>
<tr>
<td align="left" colspan="2">
Sales Price of Relinquished Property
</td>
<td align="right">
<input type="text" value="0" name="gain_price" id="gain_price" onfocus="this.select();" onblur="Calc2();" />
</td>
</tr>
<tr>
<td align="left">Less:</td>
<td align="left">Net Adjusted Basis</td>
<td align="right">
<input type="text" value="0" name="gain_basis" id="gain_basis" onfocus="this.select();" onblur="Calc2();" />
</td>
</tr>
<tr>
<td align="left">Less:</td>
<td align="left">Cost of Sales (ie. commissions)</td>
<td align="right">
<input type="text" value="0" name="gain_cost" id="gain_cost" onfocus="this.select();" onblur="Calc2();" />
</td>
</tr>
<tr>
<td align="left">Equals:</td>
<td align="left">Capital Gain</td>
<td align="right">
<input type="text" value="0" name="gain_gain" id="gain_gain" onfocus="this.select();" onblur="Calc3();" />
</td>
</tr>
<tr>
<td align="left" colspan="3"> </td>
</tr>
<tr>
<td align="left" colspan="3">
<b>Capital Gain Tax Due</td>
</td>
</tr>
<tr>
<td align="left">Add:</td>
<td align="left">Federal Capital Gain Rate (15%)</td>
<td align="right">
<input type="text" value="0" name="tax_fed" id="tax_fed" onfocus="this.select();" onblur="Calc3();" />
</td>
</tr>
<tr>
<td align="left" valign="top">Add:</td>
<td align="left" valign="top">
State Capital Gain Rate
<br />
enter rate: %
<input type="text" size="3" value="0" name="tax_rate" id="tax_rate" onfocus="this.select();" onblur="Calc4();" />
</td>
<td align="right" valign="bottom">
<input type="text" value="0" name="tax_st" id="tax_st" onfocus="this.select();" onblur="Calc5();" />
</td>
</tr>
<tr>
<td align="left">Equals:</td>
<td align="left">Total Capital Gain Tax Due</td>
<td align="right">
$
<input type="text" value="0" name="tax_due" id="tax_due" onfocus="this.select();" />
</td>
</tr>
<tr>
<td align="left"> </td>
</tr>
<tr>
<td colspan="3" align="center">
<input type="reset" value=" Clear " />
</td>
</tr>
</tbody>
</table>
</form>
</center>
</body>
</html>
[edited by: DrDoc at 6:14 pm (utc) on Sep. 1, 2005]
[edit reason] Terribly sorry, but we can't allow personally identifiable content. [/edit]