Part A: Maximum FAR and Floor Area:
Part B: Gross Floor Area of the main floors of the main house:
Part C: Gross Floor Area of the basement or cellar:
Part D: Gross Floor Area of the attic:
Part E. Gross Floor Area of all accessory structures except detached garages: (including cabanas, guest houses, caretaker's cottages, pool houses, sheds, barns, or other structures except a detached garage)
Part F. Gross Floor Area of the garage: (not including basement garages)
Part G: Total Floor Area:
The Javascript involved in the calculations is as follows:
Expand|Select|Wrap|Line Numbers
- <SCRIPT LANGUAGE="JavaScript" TYPE="text/javascript">
- //**************************************************************************************
- function checkAllInputFields(){
- IsValidEntry(entireForm.A1.value)
- IsValidEntry(entireForm.A5.value)
- IsValidEntry(entireForm.A6.value)
- IsValidEntry(entireForm.A8.value)
- IsValidEntry(entireForm.A9.value)
- IsValidEntry(entireForm.B1.value)
- IsValidEntry(entireForm.B3.value)
- IsValidEntry(entireForm.B4.value)
- IsValidEntry(entireForm.B5.value)
- IsValidEntry(entireForm.C1.value)
- IsValidEntry(entireForm.C2.value)
- IsValidEntry(entireForm.C3.value)
- IsValidEntry(entireForm.D3.value)
- IsValidEntry(entireForm.D4.value)
- IsValidEntry(entireForm.D6.value)
- IsValidEntry(entireForm.D7.value)
- IsValidEntry(entireForm.D9.value)
- IsValidEntry(entireForm.D10.value)
- IsValidEntry(entireForm.D12.value)
- IsValidEntry(entireForm.D13.value)
- IsValidEntry(entireForm.D14.value)
- IsValidEntry(entireForm.D15.value)
- IsValidEntry(entireForm.E1.value)
- IsValidEntry(entireForm.F2.value)
- IsValidEntry(entireForm.F3.value)
- IsValidEntry(entireForm.F4.value)
- IsValidEntry(entireForm.F5.value)
- IsValidEntry(entireForm.F8.value)
- IsValidEntry(entireForm.F9.value)
- IsValidEntry(entireForm.F11.value)
- IsValidEntry(entireForm.F12.value)
- IsValidEntry(entireForm.F14.value)
- IsValidEntry(entireForm.F15.value)
- IsValidEntry(entireForm.F17.value)
- IsValidEntry(entireForm.F18.value)
- IsValidEntry(entireForm.F19.value)
- IsValidEntry(entireForm.F20.value)
- }
- //**************************************************************************************
- function IsValidEntry(entry){
- if(entry == "N/A to this property" || entry == "" || IsNumeric(entry)){
- //do nothing
- }
- else{
- alert(entry + " is not a number. Numbers must only contain digits and decimal points")
- }
- }
- //**************************************************************************************
- function IsNumeric(sText){
- var ValidChars = "0123456789.";
- var IsNumber=true;
- var Char;
- for (i = 0; i < sText.length && IsNumber == true; i++) {
- Char = sText.charAt(i);
- if (ValidChars.indexOf(Char) == -1) {
- IsNumber = false;
- }
- }
- return IsNumber;
- }
- //function which returns given number to 2 decimal places
- function roundTwo(x) {
- return (Math.round(x*Math.pow(10,2)))/Math.pow(10,2)
- }
- //**************************************************************************************
- // function which returns given number to 4 decimal places
- function roundFour(x) {
- return (Math.round(x*Math.pow(10,4)))/Math.pow(10,4)
- }
- //**************************************************************************************
- // function which calls calculation functions for all sections
- // this function is called whenever anything is changed on the form
- function calculateAll(){
- checkAllInputFields()
- doZoneChange()
- doPartA()
- doPartB()
- doPartC()
- doPartD()
- doPartE()
- doPartF()
- doPartG()
- }
- //***************************************************************************************
- //funtion that changes form according to zoning district
- function doZoneChange(){
- if (entireForm.zone.value == "AA1"){
- entireForm.A5.value = "N/A to this property"
- entireForm.A5.disabled = true
- entireForm.A6.value = "N/A to this property"
- entireForm.A6.disabled = true
- entireForm.A7.value = "---------------------"
- entireForm.A8.value = "N/A to this property"
- entireForm.A8.disabled = true
- entireForm.A9.value = "N/A to this property"
- entireForm.A9.disabled = true
- entireForm.A10.value = "---------------------"
- entireForm.A11.value = "---------------------"
- entireForm.A12.value = "---------------------"
- entireForm.A13.value = "---------------------"
- entireForm.A14.value = "N/A to this property"
- }
- else{
- if (entireForm.A6.value == "N/A to this property"){
- entireForm.A5.value = ""
- entireForm.A5.disabled = false
- entireForm.A6.value = ""
- entireForm.A6.disabled = false
- entireForm.A7.value = ""
- entireForm.A8.value = ""
- entireForm.A8.disabled = false
- entireForm.A9.value = ""
- entireForm.A9.disabled = false
- entireForm.A10.value = ""
- entireForm.A11.value = ""
- entireForm.A12.value = ""
- entireForm.A13.value = ""
- entireForm.A14.value = ""
- if (entireForm.zone.value == "A1"){
- entireForm.A13.value = "1200"
- }
- else if (entireForm.zone.value == "A4" || entireForm.zone.value == "A5"){
- entireForm.A13.value = "400"
- }
- else{
- entireForm.A13.value = "700"
- }
- }
- else{
- if (entireForm.zone.value == "A1"){
- entireForm.A13.value = "1200"
- }
- else if (entireForm.zone.value == "A4" || entireForm.zone.value == "A5"){
- entireForm.A13.value = "400"
- }
- else{
- entireForm.A13.value = "700"
- }
- }
- }
- }
- //***************************************************************************************
- function doPartA(){
- //----------------------------------------
- // Calculates A2
- //----------------------------------------
- var lotArea = entireForm.A1.value
- if(lotArea < 5000){
- entireForm.A2.value = .43
- }
- else if(lotArea < 10000){
- entireForm.A2.value = (.43-(((lotArea-5000)/1000)*.016))
- }
- else if(lotArea < 15000){
- entireForm.A2.value = (.35-(((lotArea-10000)/1000)*.012))
- }
- else if(lotArea < 30000){
- entireForm.A2.value = (.29-(((lotArea-15000)/1000)*.006))
- }
- else if(lotArea < 35000){
- entireForm.A2.value = (.20-(((lotArea-30000)/1000)*.0045))
- }
- else if(lotArea < 40000){
- entireForm.A2.value = (.1775-(((lotArea-35000)/1000)*.003))
- }
- else if(lotArea < 45000){
- entireForm.A2.value = (.1625-(((lotArea-40000)/1000)*.002))
- }
- else if(lotArea < 50000){
- entireForm.A2.value = (.1525-(((lotArea-45000)/1000)*.0015))
- }
- else if(lotArea < 76231){
- entireForm.A2.value = .145
- }
- else {
- entireForm.A2.value = 0
- }
- entireForm.A2.value = roundFour(entireForm.A2.value)
- //------------------------------------
- // Calculates A4
- //------------------------------------
- if(lotArea < 76231){
- var maxFar = entireForm.A2.value
- entireForm.A4.value = (roundTwo(lotArea * maxFar))
- }
- else{
- entireForm.A4.value = 15000
- }
- //-------------------------------------
- // Calculates A7 & A10
- //--------------------------------------
- var RRightSetBack = entireForm.A5.value
- var PRightSetBack = entireForm.A6.value
- var RLeftSetBack = entireForm.A8.value
- var PLeftSetBack = entireForm.A9.value
- entireForm.A7.value = (PRightSetBack - RRightSetBack)
- if(entireForm.A7.value <= 0){
- entireForm.A7.value = 0
- }
- entireForm.A10.value = roundFour(PLeftSetBack - RLeftSetBack)
- if(entireForm.A10.value <= 0){
- entireForm.A10.value = 0
- }
- leftResult = entireForm.A10.value
- rightResult = entireForm.A7.value
- //-------------------------------------
- // Calculates A11
- //--------------------------------------
- entireForm.A11.value = roundFour(Number(leftResult) + Number(rightResult))
- //-------------------------------------
- // Calculates A12
- //--------------------------------------
- entireForm.A12.value = roundFour(entireForm.A11.value * 100)
- //-------------------------------------
- // Calculates A14
- //--------------------------------------
- if(entireForm.zone.value == "AA1"){
- entireForm.A14.value = "0"
- }
- else{
- var formA13 = entireForm.A13.value
- var formA12 = entireForm.A12.value
- if(Number(formA13) < Number(formA12)){
- entireForm.A14.value = formA13
- }
- else{
- entireForm.A14.value = formA12
- }
- }
- //-------------------------------------
- // Calculates A15
- //--------------------------------------
- entireForm.A15.value = (Number(entireForm.A14.value) + Number(entireForm.A4.value))
- }
- //***************************************************************************************
- function doPartB(){
- //-------------------------------------
- // Calculates B2 & B6
- //--------------------------------------
- var formB2 = (entireForm.B1.value * 2)
- var formB3 = entireForm.B3.value
- var formB4 = entireForm.B4.value
- var formB5 = entireForm.B5.value
- entireForm.B2.value = formB2
- entireForm.B6.value = roundTwo(Number(formB2) + Number(formB3) + Number(formB4) + Number(formB5))
- }
- //***************************************************************************************
- var firstTimeThrough = 0
- function doPartC(){
- //-------------------------------------
- // Calculates C4
- //--------------------------------------
- var tallestPoint = entireForm.C1.value
- if( !(entireForm.C1.value == "") ){
- firstTimeThrough = 1
- }
- if ( (tallestPoint < 3) && (firstTimeThrough == 1) ){
- entireForm.C2.value = "N/A to this property"
- entireForm.C2.disabled = true
- entireForm.C3.value = "N/A to this property"
- entireForm.C3.disabled = true
- entireForm.C4.value = "0"
- }
- else{
- if (entireForm.C2.value == "N/A to this property"){
- entireForm.C2.value = ""
- entireForm.C2.disabled = false
- entireForm.C3.value = ""
- entireForm.C3.disabled = false
- entireForm.C4.value = ""
- }
- else{
- entireForm.C4.value = roundTwo(entireForm.C3.value * entireForm.C2.value)
- }
- }
- }
- //***************************************************************************************
- function doPartD(){
- if(entireForm.D1.value == "No" || entireForm.D2.value == "No"){
- entireForm.D3.value = "N/A to this property"
- entireForm.D3.disabled = true
- entireForm.D4.value = "N/A to this property"
- entireForm.D4.disabled = true
- entireForm.D5.value = "---------------------"
- entireForm.D6.value = "N/A to this property"
- entireForm.D6.disabled = true
- entireForm.D7.value = "N/A to this property"
- entireForm.D7.disabled = true
- entireForm.D8.value = "---------------------"
- entireForm.D9.value = "N/A to this property"
- entireForm.D9.disabled = true
- entireForm.D10.value = "N/A to this property"
- entireForm.D10.disabled = true
- entireForm.D11.value = "---------------------"
- entireForm.D12.value = "N/A to this property"
- entireForm.D12.disabled = true
- entireForm.D13.value = "N/A to this property"
- entireForm.D13.disabled = true
- entireForm.D14.value = "N/A to this property"
- entireForm.D14.disabled = true
- entireForm.D15.value = "N/A to this property"
- entireForm.D15.disabled = true
- entireForm.D16.value = "0"
- }
- else if(entireForm.D3.value == "N/A to this property"){
- entireForm.D3.value = ""
- entireForm.D3.disabled = false
- entireForm.D4.value = ""
- entireForm.D4.disabled = false
- entireForm.D5.value = ""
- entireForm.D6.value = ""
- entireForm.D6.disabled = false
- entireForm.D7.value = ""
- entireForm.D7.disabled = false
- entireForm.D8.value = ""
- entireForm.D9.value = ""
- entireForm.D9.disabled = false
- entireForm.D10.value = ""
- entireForm.D10.disabled = false
- entireForm.D11.value = ""
- entireForm.D12.value = ""
- entireForm.D12.disabled = false
- entireForm.D13.value = ""
- entireForm.D13.disabled = false
- entireForm.D14.value = ""
- entireForm.D14.disabled = false
- entireForm.D15.value = ""
- entireForm.D15.disabled = false
- entireForm.D16.value = ""
- }
- else{
- //-------------------------------------
- // Calculates D5
- //--------------------------------------
- if(entireForm.D3.value == "0"){
- entireForm.D4.value = "0"
- entireForm.D5.value = "0"
- }
- else{
- entireForm.D5.value = roundFour((entireForm.D4.value / entireForm.D3.value)*100)
- }
- //-------------------------------------
- // Calculates D8
- //--------------------------------------
- if(entireForm.D6.value == "0"){
- entireForm.D7.value = "0"
- entireForm.D8.value = "0"
- }
- else{
- entireForm.D8.value = roundFour((entireForm.D7.value / entireForm.D6.value)*100)
- }
- //-------------------------------------
- // Calculates D11
- //--------------------------------------
- if(entireForm.D9.value == "0"){
- entireForm.D10.value = "0"
- entireForm.D11.value = "0"
- }
- else{
- entireForm.D11.value = roundFour((entireForm.D10.value / entireForm.D9.value)*100)
- }
- if(entireForm.D12.value == "0"){
- entireForm.D13.value = "0"
- }
- if(entireForm.D4.value == ""){
- entireForm.D5.value = "NMI"
- }
- if(entireForm.D7.value == ""){
- entireForm.D8.value = "NMI"
- }
- if(entireForm.D10.value == ""){
- entireForm.D11.value = "NMI"
- }
- //-------------------------------------
- // Calculates D16
- //--------------------------------------
- if(entireForm.D5.value < 30 && entireForm.D8.value < 30 && entireForm.D11.value < 30 && entireForm.D12.value >= 5 && entireForm.D13.value >= 5){
- entireForm.D14.value = "N/A to this property"
- entireForm.D14.disabled = true
- entireForm.D15.value = "N/A to this property"
- entireForm.D15.disabled = true
- entireForm.D16.value = "N/A to this property"
- }
- else if (entireForm.D14.value == "N/A to this property"){
- entireForm.D14.value = ""
- entireForm.D14.disabled = false
- entireForm.D15.value = ""
- entireForm.D15.disabled = false
- entireForm.D16.value = ""
- }
- if (!(entireForm.D14.value == "") && !(entireForm.D15.value == "") && !(entireForm.D15.value == "N/A to this property") && !(entireForm.D15.value == "N/A to this property")){
- entireForm.D16.value = (entireForm.D14.value - entireForm.D15.value)
- }
- }
- }
- //***************************************************************************************
- function doPartE(){
- //-------------------------------------
- // Calculates E2
- //--------------------------------------
- entireForm.E2.value = entireForm.E1.value
- }
- //***************************************************************************************
- function doPartF(){
- if(entireForm.F0.value == "No"){
- entireForm.F3.value = "0"
- entireForm.F3.disabled = true
- entireForm.F4.value = "0"
- entireForm.F4.disabled = true
- entireForm.F5.value = "0"
- entireForm.F5.disabled = true
- entireForm.F6.value = "No"
- entireForm.F6.disabled = true
- entireForm.F7.disabled = true
- }
- else if(entireForm.F0.value == "Yes" && entireForm.F3.value == "0"){
- entireForm.F3.value = ""
- entireForm.F3.disabled = false
- entireForm.F4.value = ""
- entireForm.F4.disabled = false
- entireForm.F5.value = ""
- entireForm.F5.disabled = false
- entireForm.F6.value = "Yes"
- entireForm.F6.disabled = false
- entireForm.F7.disabled = false
- }
- if(entireForm.F1.value == "No"){
- entireForm.F2.value = "0"
- entireForm.F2.disabled = true
- }
- else if(entireForm.F1.value == "Yes" && entireForm.F2.value == "0"){
- entireForm.F2.value = ""
- entireForm.F2.disabled = false
- }
- if(entireForm.F6.value == "No" || entireForm.F7.value == "No"){
- entireForm.F8.value = "N/A to this property"
- entireForm.F8.disabled = true
- entireForm.F9.value = "N/A to this property"
- entireForm.F9.disabled = true
- entireForm.F10.value = "---------------------"
- entireForm.F11.value = "N/A to this property"
- entireForm.F11.disabled = true
- entireForm.F12.value = "N/A to this property"
- entireForm.F12.disabled = true
- entireForm.F13.value = "---------------------"
- entireForm.F14.value = "N/A to this property"
- entireForm.F14.disabled = true
- entireForm.F15.value = "N/A to this property"
- entireForm.F15.disabled = true
- entireForm.F16.value = "---------------------"
- entireForm.F17.value = "N/A to this property"
- entireForm.F17.disabled = true
- entireForm.F18.value = "N/A to this property"
- entireForm.F18.disabled = true
- entireForm.F19.value = "N/A to this property"
- entireForm.F19.disabled = true
- entireForm.F20.value = "N/A to this property"
- entireForm.F20.disabled = true
- entireForm.F21.value = "0"
- }
- else if(entireForm.F8.value == "N/A to this property"){
- entireForm.F8.value = ""
- entireForm.F8.disabled = false
- entireForm.F9.value = ""
- entireForm.F9.disabled = false
- entireForm.F10.value = ""
- entireForm.F11.value = ""
- entireForm.F11.disabled = false
- entireForm.F12.value = ""
- entireForm.F12.disabled = false
- entireForm.F13.value = ""
- entireForm.F14.value = ""
- entireForm.F14.disabled = false
- entireForm.F15.value = ""
- entireForm.F15.disabled = false
- entireForm.F16.value = ""
- entireForm.F17.value = ""
- entireForm.F17.disabled = false
- entireForm.F18.value = ""
- entireForm.F18.disabled = false
- entireForm.F19.value = ""
- entireForm.F19.disabled = false
- entireForm.F20.value = ""
- entireForm.F20.disabled = false
- entireForm.F21.value = "0"
- }
- else{
- //-------------------------------------
- // Calculates F10
- //--------------------------------------
- if(entireForm.F8.value == "0"){
- entireForm.F9.value = "0"
- entireForm.F10.value = "0"
- }
- else{
- entireForm.F10.value = roundFour((entireForm.F9.value / entireForm.F8.value)*100)
- }
- //-------------------------------------
- // Calculates F13
- //--------------------------------------
- if(entireForm.F11.value == "0"){
- entireForm.F12.value = "0"
- entireForm.F13.value = "0"
- }
- else{
- entireForm.F13.value = roundFour((entireForm.F12.value / entireForm.F11.value)*100)
- }
- //-------------------------------------
- // Calculates F16
- //--------------------------------------
- if(entireForm.F14.value == "0"){
- entireForm.F15.value = "0"
- entireForm.F16.value = "0"
- }
- else{
- entireForm.F16.value = roundFour((entireForm.F15.value / entireForm.F14.value)*100)
- }
- if(entireForm.F17.value == "0"){
- entireForm.F18.value = "0"
- }
- if(entireForm.F9.value == ""){
- entireForm.F10.value = "NMI"
- }
- if(entireForm.F12.value == ""){
- entireForm.F13.value = "NMI"
- }
- if(entireForm.F15.value == ""){
- entireForm.F16.value = "NMI"
- }
- //-------------------------------------
- // Calculates F21
- //--------------------------------------
- if(entireForm.F10.value < 30 && entireForm.F13.value < 30 && entireForm.F16.value < 30 && entireForm.F17.value >= 5 && entireForm.F18.value >= 5){
- entireForm.F19.value = "N/A to this property"
- entireForm.F19.disabled = true
- entireForm.F20.value = "N/A to this property"
- entireForm.F20.disabled = true
- entireForm.F21.value = "N/A to this property"
- }
- else if (entireForm.F19.value == "N/A to this property"){
- entireForm.F19.value = ""
- entireForm.F19.disabled = false
- entireForm.F20.value = ""
- entireForm.F20.disabled = false
- entireForm.F21.value = ""
- }
- if (!(entireForm.F19.value == "") && !(entireForm.F20.value == "") && !(entireForm.F20.value == "N/A to this property") && !(entireForm.F20.value == "N/A to this property")){
- entireForm.F21.value = roundTwo(entireForm.F19.value - entireForm.F20.value)
- }
- }
- //-------------------------------------
- // Calculates F23
- //--------------------------------------
- entireForm.F22.value = entireForm.A1.value
- if(entireForm.F22.value <= 10000){
- entireForm.F23.value = 250
- }
- else{
- entireForm.F23.value = 400
- }
- //-------------------------------------
- // Calculates F24 & F25
- //--------------------------------------
- entireForm.F24.value = roundFour(Number(entireForm.F2.value) + Number(entireForm.F3.value))
- entireForm.F25.value = roundFour(entireForm.F24.value - entireForm.F23.value)
- //-------------------------------------
- // Calculates F26
- //--------------------------------------
- if(entireForm.F25.value < 0){
- entireForm.F25.value = 0
- }
- entireForm.F26.value = roundTwo(Number(entireForm.F4.value) + Number(entireForm.F5.value) + Number(entireForm.F21.value) + Number(entireForm.F25.value))
- }
- //***************************************************************************************
- function doPartG(){
- //-------------------------------------
- // Calculates G1 & G2
- //--------------------------------------
- entireForm.G1.value = roundTwo(Number(entireForm.B6.value) + Number(entireForm.C4.value) + Number(entireForm.D16.value) + Number(entireForm.E2.value) + Number(entireForm.F26.value))
- entireForm.G2.value = entireForm.A15.value
- //-------------------------------------
- // Calculates G4 & G5
- //--------------------------------------
- if (entireForm.G1.value > entireForm.G2.value){
- entireForm.G3.value = "Yes"
- entireForm.G4.value = roundTwo(entireForm.G1.value - entireForm.G2.value)
- }
- else{
- entireForm.G3.value = "No"
- entireForm.G4.value = "Not exceeded"
- }
- }
- //***************************************************************************************
- </SCRIPT>
The HTML is as Follows :
Expand|Select|Wrap|Line Numbers
- <html>
- <head>
- <meta http-equiv="Content-Language" content="en-us">
- <meta name="GENERATOR" content="Microsoft FrontPage 4.0">
- <meta name="ProgId" content="FrontPage.Editor.Document">
- <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
- <title>Village of Scarsdale</title>
- </head>
- <body>
- <table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="95%" id="AutoNumber1">
- <tr>
- <td width="50%"><font size="5" face="Verdana">Village of Scarsdale</font></td>
- <td width="50%">
- <p align="right">
- <SCRIPT LANGUAGE="JavaScript1.2">
- <!-- Begin
- var months=new Array(13);
- months[1]="January";
- months[2]="February";
- months[3]="March";
- months[4]="April";
- months[5]="May";
- months[6]="June";
- months[7]="July";
- months[8]="August";
- months[9]="September";
- months[10]="October";
- months[11]="November";
- months[12]="December";
- var time=new Date();
- var lmonth=months[time.getMonth() + 1];
- var date=time.getDate();
- var year=time.getYear();
- if (year < 2000) // Y2K Fix, Isaac Powell
- year = year + 1900; // http://onyx.idbsu.edu/~ipowell
- document.write("<center>" + lmonth + " ");
- document.write(date + ", " + year + "</center>");
- // End -->
- </SCRIPT>
- </td>
- </tr>
- <tr>
- <td width="100%" colspan="2"><font face="Verdana">Residential Floor Area Ratio (Far)
- Worksheet</font></td>
- </tr>
- </table>
- <p>For more FAR information click
- <a href="http://www.scarsdale.com/portals/0/planning/Far_Information.doc">here</a> (Word
- .doc).<br/>
- For non-automated FAR worksheet click
- <a href="http://www.scarsdale.com/portals/0/planning/Far_worksheet.xls">here</a> (Excel .xls).</p>
- <p>Update: 10/9/02 Error corrected for lots 15,000 to 30,000 square feet (was
- computing a gross residential floor area 1.9% too high).</p>
- <table border="1" cellpadding="2" style="border-collapse: collapse" bordercolor="#111111" width="100%" id="AutoNumber4" height="132">
- <tr>
- <td width="605" height="128"><font face="Verdana" size="2"><b>Notes:</b>
- This online worksheet will do all FAR calculations automatically, please
- enter all the required measurements and information. All measurements
- are in feet or square feet. All measurements must be represented in
- decimal form. For example, 2 feet and 6 inches should be represented
- as "2.5". Users may only enter information into the user input column,
- all other fields will be automatically calculated. Users may only type
- numbers and decimal points into input fields. For example, "12,000"
- would not be accepted because it has a comma in it. The calculations
- column should be ignored by the user. A message of "N/A for this
- property" means that this field is irrelevant to the calculation of FAR.
- Fields with the value "N/A for this property" should be ignored by the user.
- No fields in the user input column should be left blank. After all
- user input fields have been completed, the worksheet should be printed and
- signed.</font></td>
- </tr>
- </table>
- <p> </p>
- <form method="POST" name = "entireForm" action="FAR.asp" webbot-action="--WEBBOT-SELF--">
- <!--webbot bot="SaveResults" startspan
- u-file="fpweb:///_private/form_results.csv" s-format="TEXT/CSV"
- s-label-fields="TRUE" --><strong>[FrontPage Save Results Component]</strong><!--webbot
- bot="SaveResults" endspan i-checksum="6561" --><p>
- <table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="85%" id="AutoNumber3">
- <tr>
- <td width="33%">Enter Full Name:</td>
- <td width="67%"><input type="text" name="fullName" size="50"></td>
- </tr>
- <tr>
- <td width="33%">Enter Property Address:</td>
- <td width="67%"><input type="text" name="address" size="50"></td>
- </tr>
- <tr>
- <td width="33%">Enter Zoning District:</td>
- <td width="67%">
- <select size="1" name="zone" onclick= "calculateAll()">
- <option value="A1">A-1 Zone</option>
- <option value="AA1">AA-1 Zone</option>
- <option value="A2">A-2 Zone</option>
- <option value="A2a">A-2a Zone</option>
- <option value="A3">A-3 Zone</option>
- <option value="A4">A-4 Zone</option>
- <option value="A5">A-5 Zone</option>
- </select></p>
- </td>
- </tr>
- </table>
- <p> </p>
- <table border="0" cellpadding="2" style="border-collapse: collapse" bordercolor="#111111" width="100%" id="AutoNumber2" height="510">
- <tr>
- <td width="70%" bgcolor="#FFFFFF" align="center" height="33"> </td>
- <td width="22%" bgcolor="#FFFFFF" style="border: 2px solid #000000" align="center" height="34">
- <b><font face="Verdana">User Input</font></b></td>
- <td width="53%" bgcolor="#FFFFFF" style="border: 2px solid #000000" align="center" height="34">
- <b><font face="Verdana">Results</font></b></td>
- <td width="19%" bgcolor="#FFFFFF" style="border: 2px solid #000000" align="center" height="34">
- <font face="Verdana"><b><font size="2">Calculations</font> </b>
- <font size="1">(ignore)</font></font></td>
- </tr>
- <tr>
- <td width="70%" height="20"> </td>
- <td width="22%" bgcolor="#FFFFCC" height="19"> </td>
- <td width="53%" height="19"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="19"> </td>
- </tr>
- <tr>
- <td width="70%" height="36"><b><font face="Verdana">Part A: Maximum FAR and
- Floor Area</font></b></td>
- <td width="22%" bgcolor="#FFFFCC" height="36"> </td>
- <td width="53%" height="36"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="36"> </td>
- </tr>
- <tr>
- <td width="70%" height="22"><font face="Verdana" size="1">Enter total lot
- area:</font></td>
- <td width="22%" bgcolor="#FFFFCC" height="22"><font face="Verdana">
- <input type="text" name="A1" size="17" onBlur = "calculateAll()" maxlength="120000"></font></td>
- <td width="53%" height="22"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="22"> </td>
- </tr>
- <tr>
- <td width="70%" height="22"> </td>
- <td width="22%" bgcolor="#FFFFCC" height="22"> </td>
- <td width="53%" height="22"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="22"><font face="Verdana">
- <input disabled = "true" type="text" name="A2" size="11"></font></td>
- </tr>
- <tr>
- <td width="70%" height="22">
- <p align="right"><b><font face="Verdana" size="1">Base Maximum Floor Area</font></b></td>
- <td width="22%" bgcolor="#FFFFCC" height="22"><font face="Verdana" size="2">
- -----------------</font></td>
- <td width="53%" height="22"><font face="Verdana" size="2">
- --------------></font></td>
- <td width="19%" bgcolor="#E3E0DB" height="22"><font face="Verdana">
- <input type="text" name="A4" size="11" disabled = "true"></font></td>
- </tr>
- <tr>
- <td width="70%" height="19"> </td>
- <td width="22%" bgcolor="#FFFFCC" height="19"> </td>
- <td width="53%" height="19"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="19"> </td>
- </tr>
- <tr>
- <td width="70%" height="11"><font size="1" face="Verdana">Enter the required
- right side yard setback:*</font></td>
- <td width="22%" bgcolor="#FFFFCC" height="11"><font face="Verdana">
- <input type="text" name="A5" size="17" onBlur = "calculateAll()" ></font></td>
- <td width="53%" height="11"></td>
- <td width="19%" bgcolor="#E3E0DB" height="11"> </td>
- </tr>
- <tr>
- <td width="70%" height="19"><font size="1" face="Verdana">Enter the proposed
- right side yard setback:*</font></td>
- <td width="22%" bgcolor="#FFFFCC" height="19"><font face="Verdana">
- <input type="text" name="A6" size="17" onBlur = "calculateAll()"></font></td>
- <td width="53%" height="19"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="19"> </td>
- </tr>
- <tr>
- <td width="70%" height="19"> </td>
- <td width="22%" bgcolor="#FFFFCC" height="19"> </td>
- <td width="53%" height="19"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="19"><font face="Verdana">
- <input type="text" name="A7" size="11" disabled = "true"></font></td>
- </tr>
- <tr>
- <td width="70%" height="19"><font size="1" face="Verdana">Enter the required
- left side yard setback:*</font></td>
- <td width="22%" bgcolor="#FFFFCC" height="19"><font face="Verdana">
- <input type="text" name="A8" size="17" onBlur = "calculateAll()" ></font></td>
- <td width="53%" height="19"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="19"> </td>
- </tr>
- <tr>
- <td width="70%" height="19"><font size="1" face="Verdana">Enter the proposed
- left side yard setback:*</font></td>
- <td width="22%" bgcolor="#FFFFCC" height="19"><font face="Verdana">
- <input type="text" name="A9" size="17" onBlur = "calculateAll()"></font></td>
- <td width="53%" height="19"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="19"> </td>
- </tr>
- <tr>
- <td width="70%" height="19"> </td>
- <td width="22%" bgcolor="#FFFFCC" height="19"> </td>
- <td width="53%" height="19"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="19"><font face="Verdana">
- <input type="text" name="A10" size="11" disabled = "true"></font></td>
- </tr>
- <tr>
- <td width="70%" height="19"> </td>
- <td width="22%" bgcolor="#FFFFCC" height="19"> </td>
- <td width="53%" height="19"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="19"><font face="Verdana">
- <input type="text" name="A11" size="11" disabled = "true"></font></td>
- </tr>
- <tr>
- <td width="70%" height="19"> </td>
- <td width="22%" bgcolor="#FFFFCC" height="19"> </td>
- <td width="53%" height="19"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="19"><font face="Verdana">
- <input type="text" name="A12" size="11" disabled = "true"></font></td>
- </tr>
- <tr>
- <td width="70%" height="19"> </td>
- <td width="22%" bgcolor="#FFFFCC" height="19"> </td>
- <td width="53%" height="19"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="19"><font face="Verdana">
- <input type="text" name="A13" size="11" value = "1200" disabled = "true"></font></td>
- </tr>
- <tr>
- <td width="70%" height="19">
- <p align="right"><b><font face="Verdana" size="1">Floor Area Bonus for
- Greater Setbacks*</font></b></td>
- <td width="22%" bgcolor="#FFFFCC" height="19"><font face="Verdana" size="2">
- -----------------</font></td>
- <td width="53%" height="19"><font face="Verdana" size="2">--------------></font></td>
- <td width="19%" bgcolor="#E3E0DB" height="19"><font face="Verdana">
- <input type="text" name="A14" size="11" disabled = "true"></font></td>
- </tr>
- <tr>
- <td width="70%" height="19">
- <p align="right"><b><font face="Verdana" size="1">Maximum Floor Area</font></b></td>
- <td width="22%" bgcolor="#FFFFCC" height="19"><font face="Verdana" size="2">
- ---------------></font></td>
- <td width="53%" height="19"><font face="Verdana">
- <input type="text" name="A15" size="17" disabled = "true"></font></td>
- <td width="19%" bgcolor="#E3E0DB" height="19"> </td>
- </tr>
- <tr>
- <td width="70%" height="19"><i><font face="Verdana" size="1">* "Right" and
- "Left" side yards are as seen from the front property line.</font></i></td>
- <td width="22%" bgcolor="#FFFFCC" height="19"> </td>
- <td width="53%" height="19"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="19"> </td>
- </tr>
- <tr>
- <td width="70%" height="19"><i><font face="Verdana" size="1">**In the case
- of an addition to an existing home, the Floor Area Bonus for Greater
- Setbacks must be added to the rear of the existing house.</font></i></td>
- <td width="22%" bgcolor="#FFFFCC" height="19"> </td>
- <td width="53%" height="19"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="19"> </td>
- </tr>
- <tr>
- <td width="70%" height="19"> </td>
- <td width="22%" bgcolor="#FFFFCC" height="19"> </td>
- <td width="53%" height="19"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="19"> </td>
- </tr>
- <tr>
- <td width="70%" height="19"><b><font face="Verdana">Part B: Gross Floor Area
- of the main floors of the main house</font></b></td>
- <td width="22%" bgcolor="#FFFFCC" height="19"> </td>
- <td width="53%" height="19"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="19"> </td>
- </tr>
- <tr>
- <td width="70%" height="19"><font face="Verdana" size="1">Calculate the
- total area of all those interior parts of the house with a floor-to-ceiling
- height greater then 14.0 ft:</font></td>
- <td width="22%" bgcolor="#FFFFCC" height="19"><font face="Verdana">
- <input type="text" name="B1" size="17" onBlur = "calculateAll()"></font></td>
- <td width="53%" height="19"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="19"> </td>
- </tr>
- <tr>
- <td width="70%" height="19"> </td>
- <td width="22%" bgcolor="#FFFFCC" height="19"> </td>
- <td width="53%" height="19"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="19"><font face="Verdana">
- <input type="text" name="B2" size="11" disabled = "true"></font></td>
- </tr>
- <tr>
- <td width="70%" height="19"><font face="Verdana" size="1">Calculate the
- total area of the first floor:*</font></td>
- <td width="22%" bgcolor="#FFFFCC" height="19"><font face="Verdana">
- <input type="text" name="B3" size="17" onBlur = "calculateAll()"></font></td>
- <td width="53%" height="19"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="19"> </td>
- </tr>
- <tr>
- <td width="70%" height="19"><font face="Verdana" size="1">Calculate the
- total area of the second floor:*</font></td>
- <td width="22%" bgcolor="#FFFFCC" height="19"><font face="Verdana">
- <input type="text" name="B4" size="17" onBlur = "calculateAll()"></font></td>
- <td width="53%" height="19"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="19"> </td>
- </tr>
- <tr>
- <td width="70%" height="19"><font face="Verdana" size="1">Calculate the
- total area of any additional floor(s), but not including basement, cellar,
- or attic space:*</font></td>
- <td width="22%" bgcolor="#FFFFCC" height="19"><font face="Verdana">
- <input type="text" name="B5" size="17" onBlur = "calculateAll()"></font></td>
- <td width="53%" height="19"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="19"> </td>
- </tr>
- <tr>
- <td width="70%" height="19"><i><font face="Verdana" size="1">* Measure to
- the exterior of the outside walls. Exclude all those interior parts of the
- house with a floor-to-ceiling height greater than 14.0 ft. Also exclude
- basements, cellars, attic space, garage space, decks, patios, balconies, or
- unenclosed porches/porticoes. Include all existing and proposed space, all
- enclosed porches/porticoes, any non-attic floor space above a garage.</font></i></td>
- <td width="22%" bgcolor="#FFFFCC" height="19"> </td>
- <td width="53%" height="19"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="19"> </td>
- </tr>
- <tr>
- <td width="70%" height="19">
- <p align="right"><b><font face="Verdana" size="1">Floor area of the main
- floors of the main house</font></b></td>
- <td width="22%" bgcolor="#FFFFCC" height="19"><font face="Verdana" size="2">
- ---------------></font></td>
- <td width="53%" height="19"><font face="Verdana">
- <input type="text" name="B6" size="17" disabled = "true"></font></td>
- <td width="19%" bgcolor="#E3E0DB" height="19"> </td>
- </tr>
- <tr>
- <td width="70%" height="19"> </td>
- <td width="22%" bgcolor="#FFFFCC" height="19"> </td>
- <td width="53%" height="19"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="19"> </td>
- </tr>
- <tr>
- <td width="70%" height="19"><b><font face="Verdana">Part C: Gross Floor Area
- of the basement or cellar</font></b></td>
- <td width="22%" bgcolor="#FFFFCC" height="19"> </td>
- <td width="53%" height="19"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="19"> </td>
- </tr>
- <tr>
- <td width="70%" height="19"><font face="Verdana" size="1">Measure the height
- of the tallest exposed basement or cellar wall: (If this number is less then
- 3.0, this section will not be included in the calculations) *</font></td>
- <td width="22%" bgcolor="#FFFFCC" height="19"><font face="Verdana">
- <input type="text" name="C1" size="17" onBlur = "calculateAll()"></font></td>
- <td width="53%" height="19"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="19"> </td>
- </tr>
- <tr>
- <td width="70%" height="19"><font face="Verdana" size="1">Measure the width
- of those sections of the exposed wall that have a height equal to or greater
- than 3.0 ft.:</font></td>
- <td width="22%" bgcolor="#FFFFCC" height="19"><font face="Verdana">
- <input type="text" name="C2" size="17" onBlur = "calculateAll()"></font></td>
- <td width="53%" height="19"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="19"> </td>
- </tr>
- <tr>
- <td width="70%" height="19"><font face="Verdana" size="1">Measure the
- distance between the front wall and the rear wall for those sections of the
- exposed wall that have a height equal to or greater than 3.0 ft.:**</font></td>
- <td width="22%" bgcolor="#FFFFCC" height="19"><font face="Verdana">
- <input type="text" name="C3" size="17" onBlur = "calculateAll()"></font></td>
- <td width="53%" height="19"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="19"> </td>
- </tr>
- <tr>
- <td width="70%" height="19"><i><font face="Verdana" size="1">* Measure from
- the finished grade to the point where the basement or cellar ceiling joins
- the wall on the inside of the house. </font></i></td>
- <td width="22%" bgcolor="#FFFFCC" height="19"> </td>
- <td width="53%" height="19"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="19"> </td>
- </tr>
- <tr>
- <td width="70%" height="19"><i><font face="Verdana" size="1">** If the depth
- varies, measure the depth at the widest point.</font></i></td>
- <td width="22%" bgcolor="#FFFFCC" height="19"> </td>
- <td width="53%" height="19"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="19"> </td>
- </tr>
- <tr>
- <td width="70%" height="19">
- <p align="right"><b><font face="Verdana" size="1">Floor area of the basement
- or cellar</font></b></td>
- <td width="22%" bgcolor="#FFFFCC" height="19"><font face="Verdana" size="2">
- ---------------></font></td>
- <td width="53%" height="19"><font face="Verdana">
- <input type="text" name="C4" size="17" disabled = "true"></font></td>
- <td width="19%" bgcolor="#E3E0DB" height="19"> </td>
- </tr>
- <tr>
- <td width="70%" height="19"> </td>
- <td width="22%" bgcolor="#FFFFCC" height="19"> </td>
- <td width="53%" height="19"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="19"> </td>
- </tr>
- <tr>
- <td width="70%" height="19"><b><font face="Verdana">Part D: Gross Floor Area
- of the attic</font></b></td>
- <td width="22%" bgcolor="#FFFFCC" height="19"> </td>
- <td width="53%" height="19"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="19"> </td>
- </tr>
- <tr>
- <td width="70%" height="19"><font face="Verdana" size="1">Does any part of
- the attic have a floor-to-ceiling height equal to or greater than 4.0 ft.?</font></td>
- <td width="22%" bgcolor="#FFFFCC" height="19">
- <p align="center"><select size="1" name="D1" onclick= "calculateAll()">
- <option value="Yes">Yes</option>
- <option value="No">No</option>
- </select></td>
- <td width="53%" height="19"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="19"> </td>
- </tr>
- <tr>
- <td width="70%" height="19"><font face="Verdana" size="1">Is there one or
- more dormer on the roof?</font></td>
- <td width="22%" bgcolor="#FFFFCC" height="19">
- <p align="center"><select size="1" name="D2" onclick= "calculateAll()">
- <option value="Yes">Yes</option>
- <option value="No">No</option>
- </select></td>
- <td width="53%" height="19"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="19"> </td>
- </tr>
- <tr>
- <td width="70%" height="19"><font face="Verdana" size="1">If there is one or
- more dormer on the roof, <u>facing the front yard</u>, measure the length of
- the roof, from one side to the other, at its widest point*, otherwise type
- "0"</font></td>
- <td width="22%" bgcolor="#FFFFCC" height="19"><font face="Verdana">
- <input type="text" name="D3" size="17" onBlur = "calculateAll()"></font></td>
- <td width="53%" height="19"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="19"> </td>
- </tr>
- <tr>
- <td width="70%" height="19"><font face="Verdana" size="1">Measure the total
- exterior width of all dormers <u>facing the front yard:</u></font></td>
- <td width="22%" bgcolor="#FFFFCC" height="19"><font face="Verdana">
- <input type="text" name="D4" size="17" onBlur = "calculateAll()"></font></td>
- <td width="53%" height="19"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="19"> </td>
- </tr>
- <tr>
- <td width="70%" height="19"> </td>
- <td width="22%" bgcolor="#FFFFCC" height="19"> </td>
- <td width="53%" height="19"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="19"><font face="Verdana">
- <input type="text" name="D5" size="11" disabled = "true"></font></td>
- </tr>
- <tr>
- <td width="70%" height="19"><font face="Verdana" size="1">If there is one or
- more dormer on the roof, <u>facing the right side yard</u>, measure the
- length of the roof, from one side to the other, at its widest point*:
- otherwise type "0"</font></td>
- <td width="22%" bgcolor="#FFFFCC" height="19"><font face="Verdana">
- <input type="text" name="D6" size="17" onBlur = "calculateAll()"></font></td>
- <td width="53%" height="19"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="19"> </td>
- </tr>
- <tr>
- <td width="70%" height="19"><font face="Verdana" size="1">Measure the total
- exterior width of all dormers <u>facing the right side yard:</u></font></td>
- <td width="22%" bgcolor="#FFFFCC" height="19"><font face="Verdana">
- <input type="text" name="D7" size="17" onBlur = "calculateAll()"></font></td>
- <td width="53%" height="19"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="19"> </td>
- </tr>
- <tr>
- <td width="70%" height="19"> </td>
- <td width="22%" bgcolor="#FFFFCC" height="19"> </td>
- <td width="53%" height="19"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="19"><font face="Verdana">
- <input type="text" name="D8" size="11" disabled = "true"></font></td>
- </tr>
- <tr>
- <td width="70%" height="19"><font face="Verdana" size="1">If there is one or
- more dormer on the roof, <u>facing the left side yard</u>, measure the
- length of the roof, from one side to the other, at its widest point,
- otherwise type "0"</font></td>
- <td width="22%" bgcolor="#FFFFCC" height="19"><font face="Verdana">
- <input type="text" name="D9" size="17" onBlur = "calculateAll()"></font></td>
- <td width="53%" height="19"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="19"> </td>
- </tr>
- <tr>
- <td width="70%" height="19"><font face="Verdana" size="1">Measure the total
- exterior width of all dormers <u>facing the left side yard:</u></font></td>
- <td width="22%" bgcolor="#FFFFCC" height="19"><font face="Verdana">
- <input type="text" name="D10" size="17" onBlur = "calculateAll()"></font></td>
- <td width="53%" height="19"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="19"> </td>
- </tr>
- <tr>
- <td width="70%" height="19"> </td>
- <td width="22%" bgcolor="#FFFFCC" height="19"> </td>
- <td width="53%" height="19"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="19"><font face="Verdana">
- <input type="text" name="D11" size="11" disabled = "true"></font></td>
- </tr>
- <tr>
- <td width="70%" height="18"><font face="Verdana" size="1">If there is one or
- more dormer on the roof, <u>facing the rear yard</u>, measure the distance
- between the left side wall of the main house and the exterior left side wall
- of the leftmost dormer, otherwise type "0"</font></td>
- <td width="22%" bgcolor="#FFFFCC" height="18"><font face="Verdana">
- <input type="text" name="D12" size="17" onBlur = "calculateAll()"></font></td>
- <td width="53%" height="18"></td>
- <td width="19%" bgcolor="#E3E0DB" height="18"> </td>
- </tr>
- <tr>
- <td width="70%" height="19"><font face="Verdana" size="1">Measure the
- distance between the left side wall of the main house and the exterior left
- side wall of the leftmost dormer <u>facing the rear yard</u>:</font></td>
- <td width="22%" bgcolor="#FFFFCC" height="19"><font face="Verdana">
- <input type="text" name="D13" size="17" onBlur = "calculateAll()"></font></td>
- <td width="53%" height="19"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="19"> </td>
- </tr>
- <tr>
- <td width="70%" height="19"><font face="Verdana" size="1">Calculate the
- total area of the attic*:</font></td>
- <td width="22%" bgcolor="#FFFFCC" height="19"><font face="Verdana">
- <input type="text" name="D14" size="17" onBlur = "calculateAll()"></font></td>
- <td width="53%" height="19"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="19"> </td>
- </tr>
- <tr>
- <td width="70%" height="19"><font face="Verdana" size="1">Calculate the area
- of that part of the attic* where the distance between the floor and ceiling
- is less than 4 feet in height:</font></td>
- <td width="22%" bgcolor="#FFFFCC" height="19"><font face="Verdana">
- <input type="text" name="D15" size="17" onBlur = "calculateAll()"></font></td>
- <td width="53%" height="19"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="19"> </td>
- </tr>
- <tr>
- <td width="70%" height="17"><i><font face="Verdana" size="1">* Measure to
- the exterior of the outside walls. Exclude roof decks, balconies, or
- unenclosed porches/porticoes. Include enclosed porches/porticoes and all
- attic space above an attached garage. </font></i></td>
- <td width="22%" bgcolor="#FFFFCC" height="17"> </td>
- <td width="53%" height="17"></td>
- <td width="19%" bgcolor="#E3E0DB" height="17"> </td>
- </tr>
- <tr>
- <td width="70%" height="17">
- <p align="right"><b><font face="Verdana" size="1">Floor Area of the attic:</font></b></td>
- <td width="22%" bgcolor="#FFFFCC" height="17"><font face="Verdana" size="2">
- ---------------></font></td>
- <td width="53%" height="17"><font face="Verdana">
- <input type="text" name="D16" size="17" disabled = "true"></font></td>
- <td width="19%" bgcolor="#E3E0DB" height="17"> </td>
- </tr>
- <tr>
- <td width="70%" height="19"> </td>
- <td width="22%" bgcolor="#FFFFCC" height="19"> </td>
- <td width="53%" height="19"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="19"> </td>
- </tr>
- <tr>
- <td width="70%" height="18"><font face="Verdana"><b>Part E. Gross Floor Area
- of all accessory structures except detached garages </b></font>
- <font face="Verdana" size="1">(including cabanas, guest houses, caretaker's
- cottages, pool houses, sheds, barns, or other structures except a detached
- garage)</font></td>
- <td width="22%" bgcolor="#FFFFCC" height="18"> </td>
- <td width="53%" height="18"></td>
- <td width="19%" bgcolor="#E3E0DB" height="18"> </td>
- </tr>
- <tr>
- <td width="70%" height="19"><font face="Verdana" size="1">Calculate the
- total area of all floors of all structures on the property except for the
- main house and, if applicable, the detached garage:*</font></td>
- <td width="22%" bgcolor="#FFFFCC" height="19"><font face="Verdana">
- <input type="text" name="E1" size="17" onBlur = "calculateAll()"></font></td>
- <td width="53%" height="19"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="19"> </td>
- </tr>
- <tr>
- <td width="70%" height="19"><i><font face="Verdana" size="1">* Measure to
- the exterior of the outside walls. Exclude basements, cellars, attic space,
- garage space, decks, patios, balconies, or unenclosed porches/porticoes.
- Include all enclosed porches/porticoes. </font></i></td>
- <td width="22%" bgcolor="#FFFFCC" height="19"> </td>
- <td width="53%" height="19"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="19"> </td>
- </tr>
- <tr>
- <td width="70%" height="19">
- <p align="right"><font face="Verdana" size="1"><b>Floor Area of all
- accessory structures except detached garages:</b></font></td>
- <td width="22%" bgcolor="#FFFFCC" height="19"><font face="Verdana" size="2">
- ---------------></font></td>
- <td width="53%" height="19"><font face="Verdana">
- <input type="text" name="E2" size="17" disabled = "true"></font></td>
- <td width="19%" bgcolor="#E3E0DB" height="19"> </td>
- </tr>
- <tr>
- <td width="70%" height="19"> </td>
- <td width="22%" bgcolor="#FFFFCC" height="19"> </td>
- <td width="53%" height="19"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="19"> </td>
- </tr>
- <tr>
- <td width="70%" height="19"><font face="Verdana"><b>Part F. Gross Floor Area
- of the garage</b><font size="1"> (not including basement garages)</font></font></td>
- <td width="22%" bgcolor="#FFFFCC" height="19"> </td>
- <td width="53%" height="19"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="19"> </td>
- </tr>
- <tr>
- <td width="70%" height="19"><font face="Verdana" size="1">Do you have a
- detached garage?</font></td>
- <td width="22%" bgcolor="#FFFFCC" height="19">
- <p align="center"><select size="1" name="F0" onclick= "calculateAll()">
- <option value="Yes" selected>Yes</option>
- <option value="No">No</option>
- </select></td>
- <td width="53%" height="19"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="19"> </td>
- </tr>
- <tr>
- <td width="70%" height="19"><font face="Verdana" size="1">Do you have a
- attached garage?</font></td>
- <td width="22%" bgcolor="#FFFFCC" height="19">
- <p align="center"><select size="1" name="F1" onclick= "calculateAll()">
- <option value="Yes">Yes</option>
- <option value="No" selected>No</option>
- </select></td>
- <td width="53%" height="19"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="19"> </td>
- </tr>
- <tr>
- <td width="70%" height="19"><font face="Verdana" size="1">For the attached
- garage, calculate the total area of the attached garage:*</font></td>
- <td width="22%" bgcolor="#FFFFCC" height="19"><font face="Verdana">
- <input type="text" name="F2" size="17" onBlur = "calculateAll()"></font></td>
- <td width="53%" height="19"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="19"> </td>
- </tr>
- <tr>
- <td width="70%" height="19"><font face="Verdana" size="1">For the detached
- garage, calculate total area of the first floor:*</font></td>
- <td width="22%" bgcolor="#FFFFCC" height="19"><font face="Verdana">
- <input type="text" name="F3" size="17" onBlur = "calculateAll()"></font></td>
- <td width="53%" height="19"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="19"> </td>
- </tr>
- <tr>
- <td width="70%" height="20"><font face="Verdana" size="1">For the detached
- garage, calculate total area of the second floor:*</font></td>
- <td width="22%" bgcolor="#FFFFCC" height="20"><font face="Verdana">
- <input type="text" name="F4" size="17" onBlur = "calculateAll()"></font></td>
- <td width="53%" height="20"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="20"> </td>
- </tr>
- <tr>
- <td width="70%" height="19"><font face="Verdana" size="1">For the detached
- garage, calculate the total area of any additional floor(s), but not
- including basement, cellar, or attic space:*</font></td>
- <td width="22%" bgcolor="#FFFFCC" height="19"><font face="Verdana">
- <input type="text" name="F5" size="17" onBlur = "calculateAll()"></font></td>
- <td width="53%" height="19"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="19"> </td>
- </tr>
- <tr>
- <td width="70%" height="19"><font face="Verdana" size="1">For the detached
- garage, does any part of
- the garage attic have a floor-to-ceiling height equal to or greater than 4.0
- ft.?</font></td>
- <td width="22%" bgcolor="#FFFFCC" height="19">
- <p align="center"><select size="1" name="F6" onclick= "calculateAll()">
- <option value="Yes">Yes</option>
- <option value="No">No</option>
- </select></td>
- <td width="53%" height="19"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="19"> </td>
- </tr>
- <tr>
- <td width="70%" height="19"><font face="Verdana" size="1">For the detached
- garage, is there one or
- more dormer on the garage roof?</font></td>
- <td width="22%" bgcolor="#FFFFCC" height="19">
- <p align="center"><select size="1" name="F7" onclick= "calculateAll()">
- <option value="Yes">Yes</option>
- <option value="No">No</option>
- </select></td>
- <td width="53%" height="19"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="19"> </td>
- </tr>
- <tr>
- <td width="70%" height="19"><font face="Verdana" size="1">If there is one or
- more dormer on the detached garage roof, <u>facing the front yard</u>, measure the
- length of the roof, from one side to the other, at its widest point,
- otherwise type "0"</font></td>
- <td width="22%" bgcolor="#FFFFCC" height="19"><font face="Verdana">
- <input type="text" name="F8" size="17" onBlur = "calculateAll()"></font></td>
- <td width="53%" height="19"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="19"> </td>
- </tr>
- <tr>
- <td width="70%" height="19"><font face="Verdana" size="1">Measure the total
- exterior width of all detached garage roof dormers <u>facing the front yard:</u></font></td>
- <td width="22%" bgcolor="#FFFFCC" height="19"><font face="Verdana">
- <input type="text" name="F9" size="17" onBlur = "calculateAll()"></font></td>
- <td width="53%" height="19"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="19"> </td>
- </tr>
- <tr>
- <td width="70%" height="19"> </td>
- <td width="22%" bgcolor="#FFFFCC" height="19"> </td>
- <td width="53%" height="19"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="19"><font face="Verdana">
- <input type="text" name="F10" size="11" disabled = "true"></font></td>
- </tr>
- <tr>
- <td width="70%" height="19"><font face="Verdana" size="1">If there is one or
- more dormer on the detached garage roof, <u>facing the right side yard</u>, measure
- the length of the roof, from one side to the other, at its widest point**:
- otherwise type "0"</font></td>
- <td width="22%" bgcolor="#FFFFCC" height="19"><font face="Verdana">
- <input type="text" name="F11" size="17" onBlur = "calculateAll()"></font></td>
- <td width="53%" height="19"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="19"> </td>
- </tr>
- <tr>
- <td width="70%" height="19"><font face="Verdana" size="1">Measure the total
- exterior width of all detached garage roof dormers <u>facing the right side yard:</u></font></td>
- <td width="22%" bgcolor="#FFFFCC" height="19"><font face="Verdana">
- <input type="text" name="F12" size="17" onBlur = "calculateAll()"></font></td>
- <td width="53%" height="19"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="19"> </td>
- </tr>
- <tr>
- <td width="70%" height="19"> </td>
- <td width="22%" bgcolor="#FFFFCC" height="19"> </td>
- <td width="53%" height="19"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="19"><font face="Verdana">
- <input type="text" name="F13" size="11" disabled = "true"></font></td>
- </tr>
- <tr>
- <td width="70%" height="19"><font face="Verdana" size="1">If there is one or
- more dormer on the detached garage roof, <u>facing the left side yard</u>, measure
- the length of the roof, from one side to the other, at its widest point**,
- otherwise type "0"</font></td>
- <td width="22%" bgcolor="#FFFFCC" height="19"><font face="Verdana">
- <input type="text" name="F14" size="17" onBlur = "calculateAll()"></font></td>
- <td width="53%" height="19"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="19"> </td>
- </tr>
- <tr>
- <td width="70%" height="19"><font face="Verdana" size="1">Measure the total
- exterior width of all detached garage roof dormers <u>facing the left side yard:</u></font></td>
- <td width="22%" bgcolor="#FFFFCC" height="19"><font face="Verdana">
- <input type="text" name="F15" size="17" onBlur = "calculateAll()"></font></td>
- <td width="53%" height="19"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="19"> </td>
- </tr>
- <tr>
- <td width="70%" height="19"> </td>
- <td width="22%" bgcolor="#FFFFCC" height="19"> </td>
- <td width="53%" height="19"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="19"><font face="Verdana">
- <input type="text" name="F16" size="11" disabled = "true"></font></td>
- </tr>
- <tr>
- <td width="70%" height="18"><font face="Verdana" size="1">If there is one or
- more dormer on the detached garage roof, <u>facing the rear yard</u>, measure the
- distance between the left side wall of the main house and the exterior left
- side wall of the leftmost dormer, otherwise type "0"</font></td>
- <td width="22%" bgcolor="#FFFFCC" height="18"><font face="Verdana">
- <input type="text" name="F17" size="17" onBlur = "calculateAll()"></font></td>
- <td width="53%" height="18"></td>
- <td width="19%" bgcolor="#E3E0DB" height="18"> </td>
- </tr>
- <tr>
- <td width="70%" height="19"><font face="Verdana" size="1">Measure the
- distance between the left side wall of the detached garage and the exterior
- left side wall of the leftmost dormer <u>facing the rear yard</u>:</font></td>
- <td width="22%" bgcolor="#FFFFCC" height="19"><font face="Verdana">
- <input type="text" name="F18" size="17" onBlur = "calculateAll()"></font></td>
- <td width="53%" height="19"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="19"> </td>
- </tr>
- <tr>
- <td width="70%" height="19"><font face="Verdana" size="1">Calculate the
- total area of the detached garage attic*:</font></td>
- <td width="22%" bgcolor="#FFFFCC" height="19"><font face="Verdana">
- <input type="text" name="F19" size="17" onBlur = "calculateAll()"></font></td>
- <td width="53%" height="19"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="19"> </td>
- </tr>
- <tr>
- <td width="70%" height="19"><font face="Verdana" size="1">Calculate the area
- of that part of the detached garage attic** where the distance between the floor and ceiling
- is less than 4 feet in height:</font></td>
- <td width="22%" bgcolor="#FFFFCC" height="19"><font face="Verdana">
- <input type="text" name="F20" size="17" onBlur = "calculateAll()"></font></td>
- <td width="53%" height="19"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="19"> </td>
- </tr>
- <tr>
- <td width="70%" height="17"><i><font face="Verdana" size="1">* Measure to
- the exterior of the outside walls. Exclude any floor space above the garage,
- as this floor area has already been counted elsewhere on this worksheet.</font></i></td>
- <td width="22%" bgcolor="#FFFFCC" height="17"> </td>
- <td width="53%" height="17"></td>
- <td width="19%" bgcolor="#E3E0DB" height="17"> </td>
- </tr>
- <tr>
- <td width="70%" height="17"><i><font face="Verdana" size="1">** Measure to
- the exterior of the outside walls. Exclude roof decks, balconies, or
- unenclosed porches/porticoes. Include enclosed porches/porticoes and all
- attic space above an attached garage. </font></i></td>
- <td width="22%" bgcolor="#FFFFCC" height="17"> </td>
- <td width="53%" height="17"></td>
- <td width="19%" bgcolor="#E3E0DB" height="17"> </td>
- </tr>
- <tr>
- <td width="70%" height="17">
- <p align="right"><b><font face="Verdana" size="1">Floor Area of the detached
- garage attic</font></b></td>
- <td width="22%" bgcolor="#FFFFCC" height="17"><font face="Verdana" size="2">
- -----------------</font></td>
- <td width="53%" height="17"><font face="Verdana" size="2">--------------></font></td>
- <td width="19%" bgcolor="#E3E0DB" height="17"><font face="Verdana">
- <input type="text" name="F21" size="11" disabled = "true"></font></td>
- </tr>
- <tr>
- <td width="70%" height="19"> </td>
- <td width="22%" bgcolor="#FFFFCC" height="19"> </td>
- <td width="53%" height="19"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="19"><font face="Verdana">
- <input type="text" name="F22" size="11" disabled = "true"></font></td>
- </tr>
- <tr>
- <td width="70%" height="19"> </td>
- <td width="22%" bgcolor="#FFFFCC" height="19"> </td>
- <td width="53%" height="19"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="19"><font face="Verdana">
- <input type="text" name="F23" size="11" disabled = "true"></font></td>
- </tr>
- <tr>
- <td width="70%" height="19"> </td>
- <td width="22%" bgcolor="#FFFFCC" height="19"> </td>
- <td width="53%" height="19"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="19"><font face="Verdana">
- <input type="text" name="F24" size="11" disabled = "true"></font></td>
- </tr>
- <tr>
- <td width="70%" height="19"> </td>
- <td width="22%" bgcolor="#FFFFCC" height="19"> </td>
- <td width="53%" height="19"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="19"><font face="Verdana">
- <input type="text" name="F25" size="11" disabled = "true"></font></td>
- </tr>
- <tr>
- <td width="70%" height="19">
- <p align="right"><b><font face="Verdana" size="1">Total Floor Area of the garage(s)</font></b></td>
- <td width="22%" bgcolor="#FFFFCC" height="19"><font face="Verdana" size="2">
- ---------------></font></td>
- <td width="53%" height="19"><font face="Verdana">
- <input type="text" name="F26" size="17" disabled = "true"></font></td>
- <td width="19%" bgcolor="#E3E0DB" height="19"> </td>
- </tr>
- <tr>
- <td width="70%" height="19"> </td>
- <td width="22%" bgcolor="#FFFFCC" height="19"> </td>
- <td width="53%" height="19"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="19"> </td>
- </tr>
- <tr>
- <td width="70%" height="19"><b><font face="Verdana">Part G: Total Floor Area</font></b></td>
- <td width="22%" bgcolor="#FFFFCC" height="19"> </td>
- <td width="53%" height="19"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="19"> </td>
- </tr>
- <tr>
- <td width="70%" height="19">
- <p align="right"><b><font face="Verdana" size="1">Total Floor Area</font></b></td>
- <td width="22%" bgcolor="#FFFFCC" height="19"><font face="Verdana" size="2">
- ---------------></font></td>
- <td width="53%" height="19"><font face="Verdana">
- <input type="text" name="G1" size="17" disabled = "true"></font></td>
- <td width="19%" bgcolor="#E3E0DB" height="19"> </td>
- </tr>
- <tr>
- <td width="70%" height="19">
- <p align="right"><b><font face="Verdana" size="1">Maximum Floor Area</font></b></td>
- <td width="22%" bgcolor="#FFFFCC" height="19"><font face="Verdana" size="2">
- ---------------></font></td>
- <td width="53%" height="19"><font face="Verdana">
- <input type="text" name="G2" size="17" disabled = "true"></font></td>
- <td width="19%" bgcolor="#E3E0DB" height="19"> </td>
- </tr>
- <tr>
- <td width="70%" height="19">
- <p align="right"><b><font size="1" face="Verdana">Exceeded Maximum Floor
- Area?</font></b></td>
- <td width="22%" bgcolor="#FFFFCC" height="19"><font face="Verdana" size="2">
- ---------------></font></td>
- <td width="53%" height="19"><font face="Verdana">
- <input type="text" name="G3" size="17" disabled = "true"></font></td>
- <td width="19%" bgcolor="#E3E0DB" height="19"> </td>
- </tr>
- <tr>
- <td width="70%" height="19">
- <p align="right"><b><font face="Verdana" size="1">Amount Exceeded</font></b></td>
- <td width="22%" bgcolor="#FFFFCC" height="19"><font face="Verdana" size="2">
- ---------------></font></td>
- <td width="53%" height="19"><font face="Verdana">
- <input type="text" name="G4" size="17" disabled = "true"></font></td>
- <td width="19%" bgcolor="#E3E0DB" height="19"> </td>
- </tr>
- <tr>
- <td width="70%" height="19"> </td>
- <td width="22%" bgcolor="#FFFFCC" height="19"> </td>
- <td width="53%" height="19"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="19"> </td>
- </tr>
- <tr>
- <td width="70%" height="19"> </td>
- <td width="22%" bgcolor="#FFFFCC" height="19"> </td>
- <td width="53%" height="19"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="19"> </td>
- </tr>
- <tr>
- <td width="70%" height="16"></td>
- <td width="22%" bgcolor="#FFFFCC" height="16"> </td>
- <td width="53%" height="16"></td>
- <td width="19%" bgcolor="#E3E0DB" height="16"> </td>
- </tr>
- <tr>
- <td width="70%" height="19"> </td>
- <td width="22%" bgcolor="#FFFFCC" height="19"> </td>
- <td width="53%" height="19"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="19"> </td>
- </tr>
- <tr>
- <td width="70%" height="19"> </td>
- <td width="22%" bgcolor="#FFFFCC" height="19"> </td>
- <td width="53%" height="19"> </td>
- <td width="19%" bgcolor="#E3E0DB" height="19"> </td>
- </tr>
- </table>
- </form>
- <p>_____________________________________________<br/>
- Signature of Owner and/or Signature of Licensed Architect, Engineer or
- Surveyor<p/>
- __________<br/>
- Date
- </p>
- </body>
- </html>
The problem im having is as follows:
When entering certain values into the form which are as follows:
--------------------------------------------------------------------------------------------------------
Part A: Maximum FAR and Floor Area: (Values Used)
Enter total lot Area: (43995)
*Enter the required right side yard setback: (20)
*Enter the proposed right side yard setback: (42.7)
*Enter the required left side yard setback: (20)
*Enter the proposed left side yard setback: (47.1)
--------------------------------------------------------------------------------------------------------
Part B: Gross Floor Area of the main floors of the main house: (Values Used)
Calculate the total area of all those interior parts of the house with a floor-to-ceiling height greater then 14.0 ft: (264)
*Calculate the total area of the first floor: (4227)
*Calculate the total area of the second floor: (3536)
*Calculate the total area of any additional floor(s), but not including basement, cellar, or attic space: (0)
--------------------------------------------------------------------------------------------------------
Part C: Gross Floor Area of the basement or cellar: (Values Used)
*Measure the height of the tallest exposed basement or cellar wall: (If this number is less then 3.0, this section will not be included in the calculations) (0)
--------------------------------------------------------------------------------------------------------
Part D: Gross Floor Area of the attic: (Values Used)
Does any part of the attic have a floor-to-ceiling height equal to or greater than 4.0 ft.? ---- (YES)
Is there one or more dormer on the roof? ---- (YES)
If there is one or more dormer on the roof, facing the front yard, measure the length of the roof, from one side to the other, at its widest point*, otherwise type "0" ---- (26)
Measure the total exterior width of all dormers facing the front yard: ---- (4)
If there is one or more dormer on the roof, facing the right side yard, measure the length of the roof, from one side to the other, at its widest point*: otherwise type "0" ---- (46.5)
Measure the total exterior width of all dormers facing the right side yard: ---- (12)
If there is one or more dormer on the roof, facing the left side yard, measure the length of the roof, from one side to the other, at its widest point, otherwise type "0" ---- (0)
Measure the total exterior width of all dormers facing the left side yard: ---- (0)
If there is one or more dormer on the roof, facing the rear yard, measure the distance between the left side wall of the main house and the exterior left side wall of the leftmost dormer, otherwise type "0" ---- (15.5)
Measure the distance between the left side wall of the main house and the exterior left side wall of the leftmost dormer facing the rear yard: ----- (6)
--------------------------------------------------------------------------------------------------------
Part E. (NO VALUES ENTERED)
--------------------------------------------------------------------------------------------------------
Part F. Gross Floor Area of the garage: (Values Used)
Do you have a detached garage? --- (NO)
Do you have a attached garage? ---- (YES)
For the attached garage, calculate the total area of the attached garage:* - (894)
For the detached garage, calculate total area of the first floor:* ---- (0)
For the detached garage, calculate total area of the second floor:* ---- (0)
For the detached garage, calculate the total area of any additional floor(s), but not including basement, cellar, or attic space:* ---- (0)
For the detached garage, does any part of the garage attic have a floor-to-ceiling height equal to or greater than 4.0 ft.? ---- (NO)
For the detached garage, is there one or more dormer on the garage roof? (YES)
If there is one or more dormer on the detached garage roof, facing the front yard, measure the length of the roof, from one side to the other, at its widest point, otherwise type "0" ---- (N/A to this property)
Measure the total exterior width of all detached garage roof dormers facing the front yard: ---- (N/A to this property)
If there is one or more dormer on the detached garage roof, facing the right side yard, measure the length of the roof, from one side to the other, at its widest point**: otherwise type "0"---- (N/A to this property)
--------------------------------------------------------------------------------------------------------
Results in Part G using the values supplied is as Follows:
In Part G: Total Floor Area:
Total Floor Area ---------------> (NaN)
Maximum Floor Area ---------------> (7997.23)
Exceeded Maximum Floor Area? ---------------> (YES
Amount Exceeded --------------> (NaN)
--------------------------------------------------------------------------------------------------------
Why is it showing NaN values? Any help would be greatly appreciated.
Thank You.