Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Need a CSS/HTML Template to automatically print legal size

Status
Not open for further replies.

susanh

MIS
Jan 16, 2001
229
US
Good Morning,
Is it possible to get a CSS html page to print on legal size paper? or at least give the height and width diminesions to print on legal? I have been searching for an answer, but not sure if it can be done.

I know that I can tell it on the user's browser side, with page setup, but....

 
The only thing I can think of is the media attribute of the <style> tag. You can set this to &quot;print&quot;, meaning that the styles within the stylesheet should only be applied when the page is printed or viewed in print-preview mode. It's often used to stop navigation links appear in a print version of a page, but perhaps you could specify sizes here too?

Manda
 
So the start of my page goes like this;

<HTML>
<HEAD>
<TITLE>HUD1a_Settlement_Statement</TITLE>
</HEAD>
<STYLE TYPE=&quot;text/css&quot;>
<!--
/* page size information */
.pg0{position:absolute;top:0px;left:0px;height:1400px;width:850px;}
/* some global information */
BODY{font-size:10px;color:#000000;background-color:#ffffff;}
A{text-decoration:none;}

/* text positioning information */


I think I understand but do you have an example?
 
I think ther might be a problem with what your'e trying to do, but I'm not 100% certain...

We all know that most printers default to letter size and in order to print anything other than this, we have to make changes in the printer software settings. (Yes, some printers will print anything as long as there's paper.) So, what you're trying to do is to programatically over-ride those settings - which I don't think you can do from a web page. Besides, the user is going to have to change paper anyway and confirm the print process through a &quot;printer window&quot; before it prints so you might as well put the burden on the user and not the software. There's always a better way...
 
Even when I modify my Browser (in the page setup) to legal size paper and change my margins, it still prints out on 3 legal size pages instead of 2 (the goal), so obviously my html/css page needs help.
I was looking at it from the html side hoping I could at least tell it to print this data within this width and height or tell it how many lines (equivalent to legal size) to print on.
Does that make sense?
Do I just need a page break? or more?

Sue
 
Hi All,
It is 2 years later and I still can not get this to work. I have looking everywhere and I can not find a solution.

The company that wrote the css page is in India and does not understand how to fix it.

I wish I could attach an example....

Sue
 
Well....The whole page was probably to much to copy in but I thought that this bit of code may help

<link rel="stylesheet" href="acdt.css" type="text/css" />
<style TYPE="text/css">
/* page size information */
.pg0{position:absolute;top:0px;left:0px;height:1400px;width:850px;}
/* some global information */
BODY{font-size:10px;color:#000000;background-color:#ffffff;}
A{text-decoration:none;}

/* text positioning information */
<!--
.containerMain {
BORDER-TOP: #4a74a4 1px solid; BORDER-BOTTOM: #4a74a4 1px solid; BORDER-RIGHT: #4a74a4 1px solid; BORDER-LEFT: #4a74a4 1px solid
}

.containerLMain {
BORDER-TOP: #4a74a4 1px solid; BORDER-BOTTOM: #4a74a4 1px solid; BORDER-RIGHT: #4a74a4 1px solid; BORDER-LEFT: #4a74a4 0px solid
}

.containerLBMain {
BORDER-TOP: #4a74a4 1px solid; BORDER-BOTTOM: #4a74a4 0px solid; BORDER-RIGHT: #4a74a4 1px solid; BORDER-LEFT: #4a74a4 0px solid
}

.containerBMain {
BORDER-TOP: #4a74a4 1px solid; BORDER-BOTTOM: #4a74a4 0px solid; BORDER-RIGHT: #4a74a4 1px solid; BORDER-LEFT: #4a74a4 1px solid
}

.containerLeft {
BORDER-TOP: #4a74a4 0px solid; BORDER-BOTTOM: #4a74a4 1px solid; BORDER-RIGHT: #4a74a4 0px solid; BORDER-LEFT: #4a74a4 0px solid
}

.containerCenter {
BORDER-TOP: #4a74a4 0px solid; BORDER-BOTTOM: #4a74a4 1px solid; BORDER-RIGHT: #4a74a4 1px solid; BORDER-LEFT: #4a74a4 1px solid
}

.containerRight {
BORDER-TOP: #4a74a4 0px solid; BORDER-BOTTOM: #4a74a4 1px solid; BORDER-RIGHT: #4a74a4 1px solid; BORDER-LEFT: #4a74a4 0px solid
}

.containerBLeft {
BORDER-TOP: #4a74a4 0px solid; BORDER-BOTTOM: #4a74a4 0px solid; BORDER-RIGHT: #4a74a4 0px solid; BORDER-LEFT: #4a74a4 0px solid
}

.containerBRight {
BORDER-TOP: #4a74a4 0px solid; BORDER-BOTTOM: #4a74a4 0px solid; BORDER-RIGHT: #4a74a4 1px solid; BORDER-LEFT: #4a74a4 0px solid
}

.containerBCenter {
BORDER-TOP: #4a74a4 0px solid; BORDER-BOTTOM: #4a74a4 0px solid; BORDER-RIGHT: #4a74a4 1px solid; BORDER-LEFT: #4a74a4 1px solid
}
-->
</style>
<SCRIPT LANGUAGE="JavaScript">
<!--
function printPage()
{
if(validateValues()=="true")
{

document.forms[0].elements["submit1"].style.display = "none";
EstimatedDivTag.style.display = "none";

EstimatedDivTagThird.style.display = "none";
if(document.forms(0).estimated.item(0).checked)
{
EstimatedDivTagFirst.style.display = "block";
EstimatedDivTagSecond.style.display = "none";
}
else if(document.forms(0).estimated.item(1).checked)
{
EstimatedDivTagFirst.style.display = "none";
EstimatedDivTagSecond.style.display = "block";
}

document.forms[0].elements["submit2"].style.display = "none";
document.forms[0].elements["submit3"].style.display = "none";
window.print();

document.forms[0].elements["submit1"].style.display = "block";
EstimatedDivTag.style.display = "block";

EstimatedDivTagThird.style.display = "block";
EstimatedDivTagFirst.style.display = "none";
EstimatedDivTagSecond.style.display = "none";

document.forms[0].elements["submit2"].style.display = "block";
document.forms[0].elements["submit3"].style.display = "block";
}
}
//-->
</SCRIPT>
 
How about just letting printer decide the size? width: 100% and no specified height -- normal document flow, will probably fill the printed best.
 
That did not work...I have several tables on this page....It only made it worse.
 
Show us the URL. With only the head of the document it is hard to tell. My bet is still 100% widths and no heights for best printing result. Users have different size papers, you cannot control how much is printed. If you really want to have the best control, measure legal paper and wrap page in containers that are a little bit smaller (to account for margins etc) than that. CSS allows for units like inches or centimeters to describe the elements.
Code:
#container {
  width: 18cm;
  height: 25cm;
}
 
Here is the code:
It is a 2 page legal form.

<html>
<head>

<title>ACCUDATA SEARCH</title>

<link rel="stylesheet" href="acdt.css" type="text/css" />
<style TYPE="text/css">
<!--
.containerMain {
BORDER-TOP: #4a74a4 1px solid; BORDER-BOTTOM: #4a74a4 1px solid; BORDER-RIGHT: #4a74a4 1px solid; BORDER-LEFT: #4a74a4 1px solid
}

.containerLMain {
BORDER-TOP: #4a74a4 1px solid; BORDER-BOTTOM: #4a74a4 1px solid; BORDER-RIGHT: #4a74a4 1px solid; BORDER-LEFT: #4a74a4 0px solid
}

.containerLBMain {
BORDER-TOP: #4a74a4 1px solid; BORDER-BOTTOM: #4a74a4 0px solid; BORDER-RIGHT: #4a74a4 1px solid; BORDER-LEFT: #4a74a4 0px solid
}

.containerBMain {
BORDER-TOP: #4a74a4 1px solid; BORDER-BOTTOM: #4a74a4 0px solid; BORDER-RIGHT: #4a74a4 1px solid; BORDER-LEFT: #4a74a4 1px solid
}

.containerLeft {
BORDER-TOP: #4a74a4 0px solid; BORDER-BOTTOM: #4a74a4 1px solid; BORDER-RIGHT: #4a74a4 0px solid; BORDER-LEFT: #4a74a4 0px solid
}

.containerCenter {
BORDER-TOP: #4a74a4 0px solid; BORDER-BOTTOM: #4a74a4 1px solid; BORDER-RIGHT: #4a74a4 1px solid; BORDER-LEFT: #4a74a4 1px solid
}

.containerRight {
BORDER-TOP: #4a74a4 0px solid; BORDER-BOTTOM: #4a74a4 1px solid; BORDER-RIGHT: #4a74a4 1px solid; BORDER-LEFT: #4a74a4 0px solid
}

.containerBLeft {
BORDER-TOP: #4a74a4 0px solid; BORDER-BOTTOM: #4a74a4 0px solid; BORDER-RIGHT: #4a74a4 0px solid; BORDER-LEFT: #4a74a4 0px solid
}

.containerBRight {
BORDER-TOP: #4a74a4 0px solid; BORDER-BOTTOM: #4a74a4 0px solid; BORDER-RIGHT: #4a74a4 1px solid; BORDER-LEFT: #4a74a4 0px solid
}

.containerBCenter {
BORDER-TOP: #4a74a4 0px solid; BORDER-BOTTOM: #4a74a4 0px solid; BORDER-RIGHT: #4a74a4 1px solid; BORDER-LEFT: #4a74a4 1px solid
}
-->
</style>
<SCRIPT LANGUAGE="JavaScript">
<!--
function printPage()
{
if(validateValues()=="true")
{

document.forms[0].elements["submit1"].style.display = "none";
EstimatedDivTag.style.display = "none";

EstimatedDivTagThird.style.display = "none";
if(document.forms(0).estimated.item(0).checked)
{
EstimatedDivTagFirst.style.display = "block";
EstimatedDivTagSecond.style.display = "none";
}
else if(document.forms(0).estimated.item(1).checked)
{
EstimatedDivTagFirst.style.display = "none";
EstimatedDivTagSecond.style.display = "block";
}

document.forms[0].elements["submit2"].style.display = "none";
document.forms[0].elements["submit3"].style.display = "none";
window.print();

document.forms[0].elements["submit1"].style.display = "block";
EstimatedDivTag.style.display = "block";

EstimatedDivTagThird.style.display = "block";
EstimatedDivTagFirst.style.display = "none";
EstimatedDivTagSecond.style.display = "none";

document.forms[0].elements["submit2"].style.display = "block";
document.forms[0].elements["submit3"].style.display = "block";
}
}
//-->
</SCRIPT>

</head>















<body bgcolor="#ffffff" leftmargin="0" topmargin="0" rightmargin="0" marginheight="0" marginwidth="0" onload="savePDF(),disableByRole(document.forms(0))">
<form name="frm">
<input type="hidden" name="closeID" value="1319">
<input type="hidden" name="clstype" value="short">
<center>
<table align="center" border="0" cellpadding="0" cellspacing="0" width="750">
<tr>
<td width="33%" vAlign="top"><font face="Arial" size="3"><b>Settlement Statement</b></font><br>Optional Form for<br>Transactions without Sellers</td>
<td width="33%" vAlign="top" align="center"><font face="Arial" size="2">U.S. Department of Housing<br>and Urban Development</font><br><br><font face="Arial" size="1">OMB Approval No. 2502-0491</font></td>

<td width="33%" vAlign="top" align="center"><font face="Arial" size="1">File Number:1014443<br><br><div id="EstimatedDivTagFirst" style="DISPLAY: none">ESTIMATED</div><div id="EstimatedDivTagSecond" style="DISPLAY: none">FINAL</div><div id="EstimatedDivTagThird" style="DISPLAY: block"></div></font></td>

</tr>
</table>
<br>
<table align="center" border="0" cellpadding="0" cellspacing="0" width="745" class="containerBMain">
<tr>
<td width="50%" vAlign="top" height="50" class="containerRight"><font face="Arial" size="1"><b>Name &amp; Address of Borrower:</b><br>Jane Doe
<BR>123 Main St<BR>Lysander, New York 13027<BR>
Onondaga</font></td>
<td width="50%" vAlign="top" height="50" class="containerLeft"><font face="Arial" size="1"><b>Name &amp; Address of Lender: </b><br>Test<BR>ABC Main Street Suite 5<BR>Bville, NY 13027</font></td>
</tr>
<tr>
<td rowspan="3" width="50%" vAlign="top" height="50" class="containerRight"><font face="Arial" size="1"><b>Property Location (If different from above):</b><br>123 Main St<BR> Baldwinsville, New York 13027<BR>Onondaga</font></td>

<td width="50%" vAlign="top" noWrap class="containerLeft"><font face="Arial" size="1"><b>Settlement
Agent:</b>&nbsp;test</font></td>
</tr>
<tr>
<td width="50%" noWrap class="containerLeft"><font face="Arial" size="1"><b>Place of Settlement:</b>&nbsp;
syracuse&nbsp;</font></td>
</tr>
<tr>
<td width="50%" noWrap class="containerLeft"><font face="Arial" size="1"><b>Settlement Date:</b>&nbsp;</font>

<font face="Arial" size="1">&nbsp;12/04/2004</font>
</td>
</tr>
<tr>
<td width="50%" noWrap class="containerBRight"><font face="Arial" size="1"><b>Loan Number:</b>&nbsp;</font></td>
<td width="50%" noWrap class="containerBLeft"><font face="Arial" size="1"><b>Disbursement Date:</b></font>
<font face="Arial" size="1">12/09/2004</font>
</td>
</tr></table>
<!-- <tr>
<td width="50%"><font face="Arial" size="1"><b>H. Disbursement Date</b>&nbsp;</font>
<font face="Arial" size="1">12/09/2004</font>

</td>

<td width="50%"><font face="Arial" size="1"><b>I.</b>
<input name=checkbox1 type=checkbox value="" disabled="true"/><b>Principal Residence</b>&nbsp;
<b>J.</b> <input name=checkbox2 type=checkbox value="" disabled="true"/><b>Other Real Estate</b></font></td>
</tr>
-->


<!-- start of section 800 ---->

<!-- end of section 800 ---->
<table align="center" border="0" cellpadding="0" cellspacing="0" width="745">
<tr>
<td rowspan="3" width=60%>
<table align="center" border="0" cellpadding="0" cellspacing="3" width="100%" class="containerBMain">
<tr>
<td colspan="3" class="containerLeft"><font face="Arial" size="1"><b>L.Settlement Charges</b></font></td>
</tr>
<tr>
<td colspan="3" class="containerLeft"><font face="Arial" size="1"><b>800.Items Payable in Connection with Loan</b></font></td>
</tr>

<tr>
<td width="76%" noWrap class="containerLeft"><font face="Arial" size="1">801.Loan Origination fee&nbsp;&nbsp; 1.0&nbsp;%&nbsp;to&nbsp;abc bank&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerCenter"><font face="Arial" size="1">&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;$1,500.00</font></td>
</tr>

<tr>
<td width="76%" noWrap class="containerLeft"><font face="Arial" size="1">802.Loan discount&nbsp;&nbsp;&nbsp;%&nbsp;to&nbsp;&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerCenter"><font face="Arial" size="1">&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
</tr>

<tr>
<td width="76%" noWrap class="containerLeft"><font face="Arial" size="1">803.Appraisal
fee&nbsp;&nbsp;to&nbsp;bank appraisalfdhgfdhgfdhgfd&nbsp;BPOC</font></td>
<td width="12%" align="right" noWrap class="containerCenter"><font face="Arial" size="1">&nbsp;$300.00</font></td>
<td width="12%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;$300.00</font></td>
</tr>

<tr>
<td width="76%" noWrap class="containerLeft"><font face="Arial" size="1">804.Credit report&nbsp;&nbsp;to&nbsp;&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerCenter"><font face="Arial" size="1">&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
</tr>

<tr>
<td width="76%" noWrap class="containerLeft"><font face="Arial" size="1">805.Inspection fee&nbsp;&nbsp;to&nbsp;&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerCenter"><font face="Arial" size="1">&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
</tr>

<tr>
<td width="76%" noWrap class="containerLeft"><font face="Arial" size="1">806.Mortgage insurance application fee&nbsp;&nbsp;abc bank&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerCenter"><font face="Arial" size="1">&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;$500.00</font></td>
</tr>

<tr>
<td width="76%" noWrap class="containerLeft"><font face="Arial" size="1">807.Mortgage broker fee&nbsp;&nbsp;&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerCenter"><font face="Arial" size="1">&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
</tr>

<tr>
<td width="76%" noWrap class="containerLeft"><font face="Arial" size="1">808.&nbsp;&nbsp;&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerCenter"><font face="Arial" size="1">&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerLeft"><font face="Arial" size="1"> &nbsp;</font></td>
</tr>

<tr>
<td width="76%" noWrap class="containerLeft"><font face="Arial" size="1">809.&nbsp;&nbsp;&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerCenter"><font face="Arial" size="1">&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerLeft"><font face="Arial" size="1"> &nbsp;</font></td>
</tr>

<tr>
<td width="76%" noWrap class="containerLeft"><font face="Arial" size="1">810.ysp pd by abc bank to&nbsp;&nbsp;prime rate funding group&nbsp;LPOC</font></td>
<td width="12%" align="right" noWrap class="containerCenter"><font face="Arial" size="1">&nbsp;$1,500.00</font></td>
<td width="12%" align="right" noWrap class="containerLeft"><font face="Arial" size="1"> &nbsp;</font></td>
</tr>

<tr>
<td width="76%" noWrap class="containerLeft"><font face="Arial" size="1">811.&nbsp;&nbsp;&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerCenter"><font face="Arial" size="1">&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
</tr>

<tr>
<td width="76%" noWrap class="containerBLeft"><font face="Arial" size="1">812.&nbsp;tax service&nbsp;&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerBCenter"><font face="Arial" size="1">&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerBLeft"><font face="Arial" size="1">&nbsp;$80.00</font></td>
</tr>

</table>
<!-- start of section 900 ---->

<!-- end of section 900 ---->
<table align="center" border="0" cellpadding="0" cellspacing="3" width="100%" class="containerBMain">
<tr>
<td colspan="3" class="containerLeft"><font face="Arial" size="1"><b>900.Items required by Lender to be paid in advance</b></font></td>
</tr>

<tr>
<td width="76%" noWrap class="containerLeft"><font face="Arial" size="1">901.Interest from&nbsp;&nbsp;12/08/2004&nbsp;to&nbsp; 01/01/2005&nbsp;@ $32.50/day&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerCenter"><font face="Arial" size="1">&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;$812.50</font></td>
</tr>

<tr>
<td width="76%" noWrap class="containerLeft"><font face="Arial" size="1">902.Mortgage insurance premium for&nbsp;&nbsp;12&nbsp;months to Dept of HUD&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerCenter"><font face="Arial" size="1">&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;$800.00</font></td>
</tr>

<tr>
<td width="76%" noWrap class="containerLeft"><font face="Arial" size="1">903.Hazard insurance premium for&nbsp;&nbsp;12&nbsp;year(s) to allstate&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerCenter"><font face="Arial" size="1">&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;$500.00</font></td>
</tr>

<tr>
<td width="76%" noWrap class="containerLeft"><font face="Arial" size="1">904.test&nbsp;&nbsp;15.00&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerCenter"><font face="Arial" size="1">&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;$15.00</font></td>
</tr>

</table>


<!-- start of section 1000 ---->

<!-- end of section 1000 ---->

<table align="center" border="0" cellpadding="0" cellspacing="0" width="100%" class="containerBMain">
<tr>
<td colspan="3" class="containerLeft"><font face="Arial" size="1"><b>1000.Reserves Deposited with Lender</b></font></td>
</tr>

<tr>
<td width="76%" noWrap class="containerLeft"><font face="Arial" size="1">1001.Hazard Insurance&nbsp;&nbsp;5 months @ $32.00/month&nbsp;BPOC</font></td>
<td width="12%" align="right" noWrap class="containerCenter"><font face="Arial" size="1">&nbsp;$160.00</font></td>
<td width="12%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;$160.00</font></td>
</tr>

<tr>
<td width="76%" noWrap class="containerLeft"><font face="Arial" size="1">1002.Mortgage Insurance&nbsp;&nbsp; months @ /month&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerCenter"><font face="Arial" size="1">&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;$200.00</font></td>
</tr>

<tr>
<td width="76%" noWrap class="containerLeft"><font face="Arial" size="1">1003.City property taxes&nbsp;&nbsp; months @ /month&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerCenter"><font face="Arial" size="1">&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
</tr>

<tr>
<td width="76%" noWrap class="containerLeft"><font face="Arial" size="1">1004.County property taxes&nbsp;&nbsp;12 months @ $102.50/month&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerCenter"><font face="Arial" size="1">&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;$1,230.00</font></td>
</tr>

<tr>
<td width="76%" noWrap class="containerLeft"><font face="Arial" size="1">1005.School taxes&nbsp;&nbsp;2 months @ $200.50/month&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerCenter"><font face="Arial" size="1">&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;$401.00</font></td>
</tr>

<tr>
<td width="76%" noWrap class="containerLeft"><font face="Arial" size="1">1006.&nbsp;&nbsp; months @ /month&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerCenter"><font face="Arial" size="1">&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
</tr>

<tr>
<td width="76%" noWrap class="containerLeft"><font face="Arial" size="1">1007.&nbsp;&nbsp; months @ /month&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerCenter"><font face="Arial" size="1">&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
</tr>

<tr>
<td width="76%" noWrap class="containerLeft"><font face="Arial" size="1">1008.Aggregate Analysis Adjustment to&nbsp;abc bank&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerCenter"><font face="Arial" size="1">&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;($1,500.00)</font></td>
</tr>

</table>


<!-- start of section 1100 ---->

<!-- end of section 1100 ---->

<table align="center" border="0" cellpadding="0" cellspacing="3" width="100%" class="containerBMain">
<tr>
<td colspan="3" class="containerLeft"><font face="Arial" size="1"><b>1100.Title Charges</b></font></td>
</tr>

<tr>
<td width="76%" noWrap class="containerLeft"><font face="Arial" size="1">1101.Settlement
or Closing fee to&nbsp;test</font></td>
<td width="12%" align="right" noWrap class="containerCenter"><font face="Arial" size="1">&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;$350.00</font></td>
</tr>

<tr>
<td width="76%" noWrap class="containerLeft"><font face="Arial" size="1">1102.Abstract
or Title search to&nbsp;test</font></td>
<td width="12%" align="right" noWrap class="containerCenter"><font face="Arial" size="1">&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;$150.00</font></td>
</tr>

<tr>
<td width="76%" noWrap class="containerLeft"><font face="Arial" size="1">1103.Title examination to&nbsp;&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerCenter"><font face="Arial" size="1">&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
</tr>

<tr>
<td width="76%" noWrap class="containerLeft"><font face="Arial" size="1">1104.Title Insurance binder to&nbsp;&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerCenter"><font face="Arial" size="1">&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
</tr>

<tr>
<td width="76%" noWrap class="containerLeft"><font face="Arial" size="1">1105.Document preparation to&nbsp;&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerCenter"><font face="Arial" size="1">&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
</tr>

<tr>
<td width="76%" noWrap class="containerLeft"><font face="Arial" size="1">1106.Notary
fees to&nbsp;test</font></td>
<td width="12%" align="right" noWrap class="containerCenter"><font face="Arial" size="1">&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;$25.00</font></td>
</tr>

<tr>
<td width="76%" noWrap class="containerLeft"><font face="Arial" size="1">1107.Attorney's fees to&nbsp;&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerCenter"><font face="Arial" size="1">&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
</tr>

<tr>
<td width="76%" noWrap class="containerLeft"><font face="Arial" size="1">1108.Title
Insurance to&nbsp;test<br>
(Includes above line nos.)</font></td>
<td width="12%" align="right" noWrap class="containerCenter"><font face="Arial" size="1">&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;$2,000.00</font></td>
</tr>

<tr>
<td width="76%" noWrap class="containerLeft"><font face="Arial" size="1">1109.Lender's coverage&nbsp;&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerCenter"><font face="Arial" size="1">&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;$500,000.00</font></td>
</tr>

<tr>
<td width="76%" noWrap class="containerLeft"><font face="Arial" size="1">1110.Owner's coverage&nbsp;&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerCenter"><font face="Arial" size="1">&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
</tr>

<tr>
<td width="76%" noWrap class="containerLeft"><font face="Arial" size="1">1111. to&nbsp;&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerCenter"><font face="Arial" size="1">&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
</tr>

<tr>
<td width="76%" noWrap class="containerLeft"><font face="Arial" size="1">1112. to&nbsp;&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerCenter"><font face="Arial" size="1">&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
</tr>

<tr>
<td width="76%" noWrap class="containerLeft"><font face="Arial" size="1">1113. to&nbsp;&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerCenter"><font face="Arial" size="1">&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
</tr>


<tr>
<td width="76%" noWrap class="containerBLeft"><font face="Arial" size="1">1114.title clearance fee&nbsp;&nbsp;ads&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerBCenter"><font face="Arial" size="1">&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerBLeft"><font face="Arial" size="1">&nbsp;</font></td>
</tr>

</table>


<!-- start of section 1200 ---->

<!-- end of section 1200 ---->

<table align="center" border="0" cellpadding="0" cellspacing="3" width="100%" class="containerBMain">
<tr>
<td colspan="3" class="containerLeft"><font face="Arial" size="1"><b>1200.Government Recording and Transfer Charges</b></font></td>
</tr>

<tr>
<td width="76%" noWrap class="containerLeft"><font face="Arial" size="1">1201.Recording
Fee&nbsp;&nbsp;Mortgage $91.50 Satisfaction $38.00 255 Affidavit
$10.00 UCC Recording $40.00 County Clerk&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerCenter"><font face="Arial" size="1">&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;$179.50</font></td>
</tr>

<tr>
<td width="76%" noWrap class="containerLeft"><font face="Arial" size="1">1202.City/County Tax/ Stamps&nbsp;&nbsp;&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerCenter"><font face="Arial" size="1">&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
</tr>

<tr>
<td width="76%" noWrap class="containerLeft"><font face="Arial" size="1">1203.State Tax/Stamps&nbsp;&nbsp;&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerCenter"><font face="Arial" size="1">&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
</tr>

<tr>
<td width="76%" noWrap class="containerLeft"><font face="Arial" size="1">1204.Lenders Mortgage Tax&nbsp;&nbsp;erie county clerk&nbsp;LPOC</font></td>
<td width="12%" align="right" noWrap class="containerCenter"><font face="Arial" size="1">&nbsp;$125.00</font></td>
<td width="12%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
</tr>

<tr>
<td width="76%" noWrap class="containerBLeft"><font face="Arial" size="1">1205.Borrowers mortgage tax&nbsp;&nbsp;erie county clerk&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerBCenter"><font face="Arial" size="1">&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerBLeft"><font face="Arial" size="1">&nbsp;$200.00</font></td>
</tr>

</table>

<!-- start of section 1300 ---->

<!-- end of section 1300 ---->

<table align="center" border="0" cellpadding="0" cellspacing="3" width="100%" class="containerMain">
<tr>
<td colspan="3" class="containerLeft"><font face="Arial" size="1"><b>1300.Additional Settlement Charges</b></font></td>
</tr>

<tr>
<td width="76%" noWrap class="containerLeft"><font face="Arial" size="1">1301.Survey to&nbsp;&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerCenter"><font face="Arial" size="1">&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
</tr>

<tr>
<td width="76%" noWrap class="containerLeft"><font face="Arial" size="1">1302.Pest inspection to&nbsp;&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerCenter"><font face="Arial" size="1">&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
</tr>

<tr>
<td width="76%" noWrap class="containerLeft"><font face="Arial" size="1">1303.Architectural/Engineering services to&nbsp;&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerCenter"><font face="Arial" size="1">&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
</tr>

<tr>
<td width="76%" noWrap class="containerLeft"><font face="Arial" size="1">1304.Building permit to&nbsp;&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerCenter"><font face="Arial" size="1">&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
</tr>

<tr>
<td width="76%" noWrap class="containerLeft"><font face="Arial" size="1">1305.&nbsp;&nbsp;&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerCenter"><font face="Arial" size="1">&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
</tr>

<tr>
<td width="76%" noWrap class="containerLeft"><font face="Arial" size="1">1306.&nbsp;&nbsp;&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerCenter"><font face="Arial" size="1">&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
</tr>

<tr>
<td width="76%" noWrap class="containerLeft"><font face="Arial" size="1">1307.&nbsp;&nbsp;&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerCenter"><font face="Arial" size="1">&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
</tr>


<tr>
<td width="76%" noWrap class="containerBLeft"><font face="Arial" size="1"><b>1400.Total Settlement Charges</b><br />(Enter on line 1602)</font></td>
<td width="12%" align="right" noWrap class="containerBCenter"><font face="Arial" size="1">&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerBLeft"><font face="Arial" size="1">&nbsp;$507,903.00</font></td>
</tr>
</table>
</td>
<!-- start of section 1500 ---->

<!-- end of section 1500 ---->
<td valign="top" width=40%>
<table align="center" border="0" cellpadding="0" cellspacing="3" width="100%" class="containerLBMain">
<tr>
<td colspan="3" class="containerLeft"><b><font face="Arial" size="1">M.Disbursement to Others</font></b></td>
</tr>
<!--<tr>
<td width="80%" height="30px" noWrap class="containerRight"><font face="Arial" size="1">1501.</font></td>
<td width="20%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
</tr>
<tr>
<td width="80%" height="30px" noWrap class="containerRight"><font face="Arial" size="1">1502.</font></td>
<td width="20%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
</tr>
<tr>
<td width="80%" height="30px" noWrap class="containerRight"><font face="Arial" size="1">1503.</font></td>
<td width="20%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
</tr>
<tr>
<td width="80%" height="30px" noWrap class="containerRight"><font face="Arial" size="1">1504.</font></td>
<td width="20%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
</tr>
<tr>
<td width="80%" height="30px" noWrap class="containerRight"><font face="Arial" size="1">1505.</font></td>
<td width="20%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
</tr>
<tr>
<td width="80%" height="30px" noWrap class="containerRight"><font face="Arial" size="1">1506.</font></td>
<td width="20%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
</tr>
<tr>
<td width="80%" height="30px" noWrap class="containerRight"><font face="Arial" size="1">1507.</font></td>
<td width="20%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
</tr>
<tr>
<td width="80%" height="30px" noWrap class="containerRight"><font face="Arial" size="1">1508.</font></td>
<td width="20%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
</tr>
<tr>
<td width="80%" height="30px" noWrap class="containerRight"><font face="Arial" size="1">1509.</font></td>
<td width="20%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
</tr>
<tr>
<td width="80%" height="30px" noWrap class="containerRight"><font face="Arial" size="1">1510.</font></td>
<td width="20%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
</tr>
<tr>
<td width="80%" height="30px" noWrap class="containerRight"><font face="Arial" size="1">1511.</font></td>
<td width="20%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
</tr>
<tr>
<td width="80%" height="30px" noWrap class="containerRight"><font face="Arial" size="1">1512.</font></td>
<td width="20%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
</tr>
<tr>
<td width="80%" height="30px" noWrap class="containerRight"><font face="Arial" size="1">1513.</font></td>
<td width="20%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
</tr>
<tr>
<td width="80%" height="30px" noWrap class="containerRight"><font face="Arial" size="1">1514.</font></td>
<td width="20%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
</tr>
<tr>
<td width="80%" height="30px" noWrap class="containerRight"><font face="Arial" size="1">1515.</font></td>
<td width="20%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
</tr>
<tr>
<td width="80%" height="30px" noWrap class="containerRight"><font face="Arial" size="1">1516.</font></td>
<td width="20%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
</tr>
<tr>
<td width="80%" height="30px" noWrap class="containerRight"><font face="Arial" size="1">1517.</font></td>
<td width="20%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
</tr>
<tr>
<td width="80%" height="30px" noWrap class="containerRight"><font face="Arial" size="1">1518.</font></td>
<td width="20%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
</tr>
<tr>
<td width="80%" height="30px" noWrap class="containerRight"><font face="Arial" size="1">1519.</font></td>
<td width="20%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
</tr>-->

<tr>
<td width="44%" noWrap class="containerLeft"><font face="Arial" size="1">1501. indymac</font></td>
<td width="44%" noWrap class="containerRight"><font face="Arial" size="1">null&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;$89,274.12</font></td>
</tr>



<tr>
<td width="44%" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
<td width="44%" noWrap class="containerRight"><font face="Arial" size="1">&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
</tr>

<tr>
<td width="44%" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
<td width="44%" noWrap class="containerRight"><font face="Arial" size="1">&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
</tr>

<tr>
<td width="44%" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
<td width="44%" noWrap class="containerRight"><font face="Arial" size="1">&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
</tr>

<tr>
<td width="44%" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
<td width="44%" noWrap class="containerRight"><font face="Arial" size="1">&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
</tr>

<tr>
<td width="44%" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
<td width="44%" noWrap class="containerRight"><font face="Arial" size="1">&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
</tr>

<tr>
<td width="44%" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
<td width="44%" noWrap class="containerRight"><font face="Arial" size="1">&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
</tr>

<tr>
<td width="44%" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
<td width="44%" noWrap class="containerRight"><font face="Arial" size="1">&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
</tr>

<tr>
<td width="44%" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
<td width="44%" noWrap class="containerRight"><font face="Arial" size="1">&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
</tr>

<tr>
<td width="44%" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
<td width="44%" noWrap class="containerRight"><font face="Arial" size="1">&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
</tr>

<tr>
<td width="44%" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
<td width="44%" noWrap class="containerRight"><font face="Arial" size="1">&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
</tr>

<tr>
<td width="44%" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
<td width="44%" noWrap class="containerRight"><font face="Arial" size="1">&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
</tr>

<tr>
<td width="44%" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
<td width="44%" noWrap class="containerRight"><font face="Arial" size="1">&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
</tr>

<tr>
<td width="44%" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
<td width="44%" noWrap class="containerRight"><font face="Arial" size="1">&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
</tr>

<tr>
<td width="44%" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
<td width="44%" noWrap class="containerRight"><font face="Arial" size="1">&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
</tr>

<tr>
<td width="44%" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
<td width="44%" noWrap class="containerRight"><font face="Arial" size="1">&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
</tr>

<tr>
<td width="44%" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
<td width="44%" noWrap class="containerRight"><font face="Arial" size="1">&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
</tr>

<tr>
<td width="44%" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
<td width="44%" noWrap class="containerRight"><font face="Arial" size="1">&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
</tr>

<tr>
<td width="44%" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
<td width="44%" noWrap class="containerRight"><font face="Arial" size="1">&nbsp;</font></td>
<td width="12%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
</tr>

<td width="44%" noWrap class="containerLeft"><font face="Arial" size="1"><b>1520.TOTAL DISBURSED</b><br>(Enter on line 1603)</font></td>
<td width="44%" noWrap class="containerRight">&nbsp;</td>
<td width="12%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;$89,274.12</font></td>
</tr>
</table>
</td>
</tr>
<!-- start of section 1600 ---->

<!-- end of section 1600 ---->
<tr>
<td valign="bottom" width="40%">
<table align="center" border="0" cellpadding="0" cellspacing="3" width="100%" class="containerLMain">
<tr>
<td colspan="2" class="containerLeft"><b><font face="Arial" size="1">N.NET SETTLEMENT</font></b></td>
</tr>

<tr>
<td width="88%" class="containerRight"><font face="Arial" size="1">1600.Loan Amount</font></td>
<td width="12%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;$150,000.00</font></td>
</tr>
<tr>
<td width="88%" class="containerRight"><font face="Arial" size="1">1601.<b>Plus</b> Cash/Check from Borrower</font></td>
<td width="12%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;</font></td>
</tr>

<tr>
<td width="88%" class="containerRight"><font face="Arial" size="1">1602.<b>Minus</b> Total Settlement Charges<br />(Line 1400)</font></td>
<td width="12%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;$507,903.00</font></td>
</tr>

<tr>
<td width="88%" class="containerRight"><font face="Arial" size="1">1603.<b>Minus</b> Total Disbursements to Others<br />(Line 1500)</font></td>
<td width="12%" align="right" noWrap class="containerLeft"><font face="Arial" size="1">&nbsp;$89,274.12</font></td>
</tr>
<tr>
<td width="88%" class="containerBRight"><font face="Arial" size="1">1604.<b>Equals</b> Disbursements to Borrower<br />
(After expiration of any applicable rescission period required by law)</font></td>
<td width="12%" align="right" noWrap class="containerBLeft"><font face="Arial" size="1">&nbsp;($447,177.12)</font></td>
</tr>
</table>
</td>
</tr>
</table>

<table align="center" border="0" bordercolordark="#FFFFFF" bordercolorlight="#CCCCCC" cellpadding="1" cellspacing="3" width="833">
<tr>
<td colspan="2"><font face="Arial" size="0">&nbsp;</font></td>
</tr>
<tr>
<td align="justify" colspan="2"><font face="Arial" size="1">I have carefully reviewed the HUD 1-A Settlement Statement and to the best of my knowledge and belief, it is a true and accurate statement of all receipts and disbursements made on my account or by me in this transaction. I further certify that I have received a copy of the HUD 1-A Settlement Statement.</font></td>
</tr>
<tr>
<td colspan="2"><font face="Arial" size="0">&nbsp;</font></td>
</tr>
<tr>
<td width="50%" align="center">
<div align="left"><font face="Arial" size="1">____________________________________________________________</font></div>
</td>
<td width="50%" align="center">
<div align="left"><font face="Arial" size="1">____________________________________________________________</font></div>
</td>
</tr>
<tr>
<td width="50%"><font face="Arial" size="1">&nbsp;Jane Doe</font></td>
<td width="50%"><font face="Arial" size="1">&nbsp;</font></td>
</tr>
<tr>
<td colspan="2" height="20"><font face="Arial" size="0">&nbsp;</font></td>
</tr>
<tr>
<td align="justify" colspan="2"><font face="Arial" size="1">The HUD 1-A Settlement Statement which I have prepared is a true and accurate account of this transaction. I have caused or will cause the funds to be disbursed in accordance with this statement.</font></td>
</tr>
<tr>
<td colspan="2" height="20"><font face="Arial" size="0">&nbsp;</font></td>
</tr>
<tr>
<td colspan="2" align="center"><font face="Arial" size="1">SETTLEMENT AGENT By:------------------------------------------------------------------------------------------&nbsp;&nbsp;&nbsp;&nbsp;DATE:----------------------------------</font></td>
</tr>
</table>
<br style="page-break-after:always">
<table align="center" border="0" bordercolordark="#FFFFFF" bordercolorlight="#CCCCCC" cellpadding="2" cellspacing="2" width="745">
<tr>
<td width="50%" vAlign="top"><font face="Arial" size="2"><p align="justify"><b>Instructions for completing form HUD-1A</b><br><b>Note:</b> This form is issued under authority of the Real Estate
Settlement Procedures Act (RESPA), 12 U.S.C. 2601 et seq. The
regulation for RESPA is Regulation X, codified as 24 CFR 3500,
and administered by the Department of Housing and Urban Development
(HUD). Regulation Z referred to in the next paragraph is
the regulation implementing the Truth in Lending Act (TILA), 15
U.S.C. 1601 et seq. and codified as 12 CFR part 226.<br><br>
HUD-1A is an optional form that may be used for refinancing
and subordinate lien federally related mortgage loans, as well as for
any other one-party transaction that does not involve the transfer of
title to residential real property. The HUD-1 form may also be used
for such transactions, by utilizing the borrower's side of the HUD-
1 and following the relevant parts of the instructions set forth in
Appendix A of Regulation X. The use of either the HUD-1 or
HUD-1A is not mandatory for open-end lines of credit (homeequity
plans), as long as the provisions of Regulation Z are
followed.<br><br><b>Background</b><br>
The HUD-1A settlement statement is to be used as a statement of
actual charges and adjustments to be given to the borrower at
settlement. The instructions for completion of the HUD-1A are for
the benefit of the settlement agent who prepares the statement; the
instructions are not a part of the statement and need not be
transmitted to the borrower. There is no objection to using the
HUD-1A in transactions in which it is not required, and its use in
open-end lines of credit transactions (home-equity plans) is encouraged.
It may not be used as a substitute for a HUD-1 in any
transaction in which there is a transfer of title and a first lien is
taken as security.<br>
Refer to the "definitions" section of Regulation X for specific
definitions of terms used in these instructions.<br><br><b>General Instructions</b><br>
Information and amounts may be filled in by typewriter, hand
printing, computer printing, or any other method producing clear
and legible results. Additional pages may be attached to the HUD-
1A for the inclusion of customary recitals and information used
locally for settlements or if there are insufficient lines on the HUD-
1A.<br>
The settlement agent shall complete the HUD-1A to itemize all
charges imposed upon the borrower by the lender, whether to be
paid at settlement or outside of settlement, and any other charges
that the borrower will pay for at settlement. In the case of "no cost"
or "no point" loans, these charges include any payments the lender
will make to affiliated or independent settlement service providers
relating to this settlement. These charges shall be included on the
HUD-1A, but marked "P.O.C." for "paid outside of closing," and
shall not be used in computing totals. Such charges also include
indirect payments or back-funded payments to mortgage brokers
that arise from the settlement transaction. When used, "P.O.C."
should be placed in the appropriate lines next to the identified item,
not in the columns themselves.
Blank lines are provided in Section L for any additional
settlement charges.<br> Blank lines are also provided in Section M for
recipients of all or portions of the loan proceeds. The names of the
recipients of the settlement charges in Section L and the names of
the recipients of the loan proceeds in Section M should be set forth
on the blank lines.<b><br><br>Line item instructions</b><br>
The identification information at the top of the HUD-1A should be
completed as follows:</p></font></td>
<td width="50%" vAlign="top"><font face="Arial" size="2"><p align="justify"><br>
The borrower's name and address is entered in the space
provided. If the property securing the loan is different from the
borrower's address, the address or other location information on
the property should be entered in the space provided. The loan
number is the lender's identification number for the loan. The
settlement date is the date of settlement in accordance with § 3500.2
of Regulation X, not the end of any applicable rescission period.
The name and address of the lender should be entered in the space
provided.<br><br><b>Line 1400</b> in the HUD-1A is for the total settlement charges
charged to the borrower. Enter this total on line 1602 as well. This
total should include Section L amounts from additional pages, if
any are attached to this HUD-1A.<br><br><b>Section L. Settlement Charges.</b> This section of the HUD-1A is
similar to section L of the HUD-1, with the deletion of lines 700
through 704, relating to real estate broker commissions. The
Instructions for filling out the HUD-l as set forth in Appendix A of
Regulation X provide additional information regarding Section L,
if needed.<br><br><b>Section M. Disbursement to Others.</b> This section is used to list
payees, other than the borrower, of all or portions of the loan
proceeds (including the lender, if the loan is paying off a prior loan
made by the same lender), when the payee will be paid directly out
of the settlement proceeds. It is not used to list payees of settlement
charges, nor to list funds disbursed directly to the borrower, even
if the lender knows the borrower's intended use of the funds.
<br>For example, in a refinancing transaction, the loan proceeds are
used to pay off an existing loan. The name of the lender for the loan
being paid off and the pay-off balance would be entered in Section
M. In a home improvement transaction when the proceeds are to
be paid to the home improvement contractor, the name of the
contractor and the amount paid to the contractor would be entered
in Section M. In a consolidation loan, or when part of the loan
proceeds is used to pay off other creditors, the name of each
creditor and the amount paid to that creditor would be entered in
Section M. If the proceeds are to be given directly to the borrower
and the borrower will use the proceeds to pay off existing obligations,
this would not be reflected in Section M.<br><br><b>Section N. Net Settlement.</b> Line 1600 normally sets forth the
principal amount of the loan as it appears on the related note for this
loan. In the event this form is used for an open-ended home equity
line whose approved amount is greater than the initial amount
advanced at settlement, the amount shown on Line 1600 will be the
loan amount advanced at settlement. Line l60l is used for all
settlement charges that are both included in the totals for lines 1400
and 1602 and are not financed as part of the principal amount of the
loan. This is the amount normally received by the lender from the
borrower at settlement, which would occur when some or all of the
settlement charges were paid in cash by the borrower at settlement,
instead of being financed as part of the principal amount of the
loan. Failure to include any such amount in line 1601 will result in
an error in the amount calculated on line 1604. P.O.C. amounts
should not be included in line 1601.<br>
Line 1602 is the total amount from line 1400.<br>
Line 1603 is the total amount from line 1520.<br>
Line 1604 is the amount disbursed to the borrower. This is
determined by adding together the amounts for lines 1600 and
1601, and then subtracting any amounts listed on lines 1602 and 1603.</p></font></td>
</tr>
</table>
<div id="EstimatedDivTag" style="DISPLAY: block"><font face="Arial" size="1">
<font face="Arial" size="1"><input type="radio" name="estimated" value="Yes">Estimated
<input type="radio" name="estimated" value="No">Final</font><br></div>
<input style="WIDTH: 60px; HEIGHT: 22px" onclick="javascript:generatePDF(1319);" type="button" value="Save" name="submit1">

<input style="WIDTH: 60px; HEIGHT: 22px" id="submit2" onclick=javascript:printPage() type=submit value=Print name=submit2>&nbsp;<input style="WIDTH: 60px; HEIGHT: 22px" id="submit3" onclick="javascript:window.close();" type=submit value=Close name=submit3>
</center>
</form>
</body>
<script>
var isDelete="true";
var isUpdate="true";
var isView="true";
var isCreate="true";
function generatePDF(cID)
{
if(validateValues()=="false")
{
return false;
}

var strVal = "Yes";
if(document.forms(0).estimated.item(0).checked)
{
strVal = "Yes";
}
else if(document.forms(0).estimated.item(1).checked)
{
strVal = "No";
}
document.forms(0).action="../../../reqPDFFileAction.do?closeID="+cID+"&clstype=short&estimated="+strVal;
document.forms(0).submit();

}

function validateValues()
{
var valid = "Please enter loan number";

if(valid!="Please enter")
{
alert(valid);
return "false";
}
else if(!document.forms(0).estimated.item(0).checked && !document.forms(0).estimated.item(1).checked)
{
alert("Please select Estimated or Final");
return "false";
}
else
{
return "true";
}
}

function savePDF()
{
if(window.opener == null)
{
if(document.forms(0).elements["submit2"] != null && document.forms(0).elements["submit3"] != null)
{
document.forms(0).elements["submit3"].style.display = "none";
document.forms(0).elements["submit2"].style.display = "none";

document.forms(0).elements["submit1"].style.display = "none";

}
var WebBrowser = '<object id="WebBrowser1" width=0 height=0 classid="clsid:8856F961-340A-11D0-A96B-00C04FD705A2"></object>';
document.body.insertAdjacentHTML('beforeEnd', WebBrowser);
WebBrowser1.ExecWB(6, -1);
WebBrowser1.outerHTML = "";
window.opener = null;
window.close();
}
}
function disableByRole(frm)
{
var strClsDeleteFlag = 'N';
var strClsRescFlag = 'No';

if(isCreate == "false" && isUpdate == "false")
{
disableFormElements(frm);
}
if(strClsDeleteFlag == "Y" || strClsRescFlag == "Yes")
{
disableFormElements(frm);
}
}

function disableFormElements(frm)
{
var formElementsSize = frm.elements.length;
for(i = 0; i < formElementsSize; i++)
{
frm.elements.disabled = "true";
}
}
</script>

</html>
 
As you can see, the page does not support dumping so much code. You will need to make us an online example. I guess you could work with page-break: property to force page breaks at certain points.
 
forgive me for being a dingbat, but I really don't know how to give you an online example. I really thought that I could just attach the file.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top