This repository was archived by the owner on Jul 1, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
143 lines (131 loc) · 6.69 KB
/
index.html
File metadata and controls
143 lines (131 loc) · 6.69 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii"/>
<link rel="stylesheet" type="text/css" href="index.css">
<title>Five Stone Property Tax TCAD Tools</title>
<style type="text/css"></style>
</head>
<body id="page1">
<img src="resources/FS-Logo-PropertyTax-wTagline.png" width="615" height="141" title="" alt="Five Stone Property Tax">
<br>
<br>
<ul id="tabs">
<li id="tab1"><a href="index.html">Table Lookups</a></li>
<li id="tab2"><a href="batch_complete.php">Batch Processing</a></li>
<li id="tab4"><a href="admin.php">Admin Tools</a></li>
</ul>
<ul>
<script type="text/javascript">
var numrows = 1;
function add_row() {
var end = document.getElementById("end");
var parentDiv = end.parentNode;
var div = document.createElement("div");
div.setAttribute("id", ++numrows);
parentDiv.insertBefore(div, end);
div.innerHTML = "\nID:<input type\=\"text\" name\=\"c" + numrows
+ "\"> Sales Price:<input type\=\"text\" name\=\"c" + numrows
+ "sp\"> Sales Date:<input type\=\"text\" name\=\"c" + numrows
+ "sd\"><input type=\"button\" onclick=\"del_row(" + numrows
+ ")\" value=\"-\">\n";
}
function del_row(id) {
var child = document.getElementById(id);
var parentDiv = child.parentNode;
parentDiv.removeChild(child);
--numrows;
}
function add_row_eq() {
var end = document.getElementById("end2");
var parentDiv = end.parentNode;
var div = document.createElement("div");
div.setAttribute("id", ++numrows);
parentDiv.insertBefore(div, end);
div.innerHTML = "\nID:<input type\=\"text\" name\=\"c" + numrows
+ "\"><input type=\"button\" onclick=\"del_row(" + numrows
+ ")\" value=\"-\">\n";
}
function del_row(id) {
var child = document.getElementById(id);
var parentDiv = child.parentNode;
parentDiv.removeChild(child);
--numrows;
}
function validateForm() {
var x = document.forms["form"]["sqftPct"].value;
if (x == null || x == "") {
alert("Square footage must be filled out");
return false;
}
var val = parseFloat(x);
if (val > 1 || val < .01) {
alert("Square footage should be between .01 and 1.00");
return false;
}
}
</script>
<h3>Enter a PropID to search for</h3>
<form name="form" action="resultSubjComps.html" method="get" target="_blank">
<input type="text" name="propid" required>
<input type="hidden" name="target" value="search"/>
<input type="submit" name="Submit" value="Search"/>
</form>
<h3>Enter a PropertyID to find best comps and generate the generate report</h3> (Note: This operation can
take some time)</p>
<form name="form" action="resultSubjComps.html" method="get" target="_blank" onsubmit="return validateForm()">
<!-- <div class="form2Col"> -->
<div id="contentBox">
<div id="column1">
<h4><label class="searchFilterTitle">Search Filters</label><br></h4>
<input type="checkbox" name="trimindicated" class="searchFilter"> Only return properties with lower comparison values<br>
<input type="checkbox" name="includemls" class="searchFilter"> Include MLS data. Years back to include:<input type="text"
name="multiyear"
value="1" size="1"><br>
<input type="checkbox" name="multihood" class="searchFilter"> Include related neighborhoods<br>
<input type="checkbox" name="includevu"class="searchFilter"> Include forclosures (VU)<br>
<input type="checkbox" name="limitImps" class="searchFilter"> Limit comps to properties with fewer Improvements<br>
<input type="checkbox" name="netadjust" class="searchFilter"> Filter based on net adjustment value of
<input type="text" name="netAdjustAmt" value="30000" size="7" class="searchFilter"
title="Will include negative to postive range of provided value"><br>
<input type="checkbox" name="rangeEnabled" class="searchFilter">
Range of subclasses to include (amount above and below subject):
<input type="text" name="range" value="3" size="2" >
<br>
<input type="checkbox" name="pctGoodRangeEnabled" class="searchFilter"> % Good Adjustment Range (amount above and below
subject):<input type="text" name="pctGoodRange" value="20" size="3">%<br>
<input type="checkbox" name="$limitTcadScores" class="searchFilter"> TCAD Score threshold:<input type="text" name="$limitTcadScoresAmount" value="90" size="3">%<br>
Number Results: <input type="text" name="display" value="35" size="3">
<input type="radio" name="style" value="equity"> Equity <input type="radio" name="style" value="sales" checked>
Sales <br>
Percent of square footage difference to consider:<input type="text" name="sqftPct" value="10" size="3"/>%<br>
</div>
<div id="column2">
<h4><label class="reportFilterTitle">Report Filters</label><br></h4>
<input type="checkbox" name="showTcadScores" class=reportFilter> Show TCAD Scores<br>
<input type="hidden" name="target" value="massreport"/>
<!-- </div> -->
</div>
</div>
<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
<input type="text" name="propid">
<input type="submit" name="Submit" value="Generate Report">
</form>
</div>
<br>
<h3>Table Generation</h3>
<form action="resultSubjComps.html" method="get" target="_blank">
<div id="subj">Subject:<br>
<input type="text" name="propid" id="propid"></div>
Comps:<input type="button" onclick="add_row()" value="+">
<div id="comps">ID:<input type="text" name="c1" id="c1">
Sales Price (No commas):<input type="text" name="c1sp">
Sales Date:<input type="text" name="c1sd"></div>
<div id="end"></div>
<input type="hidden" name="target" value="properties"/>
<input type="submit" name="Submit" value="Sales"/>
<input type="submit" name="Submit" value="Equity"/>
</form>
</ul>
</body>
</html>