<%@ page import="java.util.*, javax.mail.*, javax.mail.internet.*" %> Branson #1 Realty - Branson, Missouri - Branson Real Estate | Branson 1 Realty | Branson Real Estate Locator + We Specialize in BRANSON REAL ESTATE and Branson+Real+Estate in Branson Missouri MO Real Estate, Branson MO Realty, BRANSON Real Estate: Cabins, Condos, Land, Lots, Homes, Commercial, Residential, Villas, Golf+Lake Front Condos, Cabins, Branson Weather, Area Info, Nightly Rentals: Reserve Branson Missouri Cabins, Branson Reserve Missouri Vacation Rentals Reservations, MO Rental Packages, Specials and More-Branson 1 Realty-Welcome <% //**************************************************************************************/ //create all variables //create variables to flag whether to prompt user for various categories boolean showType = false; boolean showCity = false; boolean showPrice = false; boolean showLake = false; boolean showLandOnly = false; boolean showResidentialType = false; boolean showAcreage = false; boolean showZoning = false; boolean showSquareFootage = false; boolean showBedAndBath = false; boolean showPosession = false; boolean showTerms = false; boolean showGarage = false; boolean showAmenities = false; boolean showStyle = false; boolean showExterior = false; boolean showRoof = false; boolean showDockSlip = false; boolean showName = false; boolean showAddress = false; boolean showEmail = false; boolean showPhone = false; boolean showComments = false; boolean showConfirmation = false; int currentPage = 0; String type = ""; String landOnly = ""; String branson = ""; String bransonWest = ""; String kimberlingCity = ""; String forsyth = ""; String lampe = ""; String rockawayBeach = ""; String shellKnob = ""; String otherCity = ""; String priceMin = ""; String priceMax = ""; String residentialType = ""; String agricultural = ""; String commercial = ""; String downtown = ""; String industrial = ""; String mixedUse = ""; String otherZoning = ""; String sqFtMin = ""; String sqFtMax = ""; String acreageMin = ""; String acreageMax = ""; String bedrooms = ""; String bathrooms = ""; String bullShoals = ""; String taneycomo = ""; String tableRock = ""; String otherLake = ""; String posession30Days = ""; String posession60Days = ""; String posession90Days = ""; String posessionAtClosing = ""; String assumption = ""; String cash = ""; String exchange = ""; String governmentLoan = ""; String attached = ""; String detached = ""; String carport = ""; String noGarage = ""; String dock = ""; String slip = ""; String indoorPool = ""; String outdoorPool = ""; String tennisCourts = ""; String basketballCourts = ""; String miniatureGolf = ""; String boatRentals = ""; String fitnessCenter = ""; String horseshoePits = ""; String picnicArea = ""; String publicBeach = ""; String shuffleBoard = ""; String volleyball = ""; String fourPlex = ""; String bungalow = ""; String capeCod = ""; String colonial = ""; String contemporary = ""; String duplex = ""; String traditional = ""; String tudor = ""; String victorian = ""; String otherStyle = ""; String aluminumSteelVinyl = ""; String block = ""; String brick = ""; String brickVeneer = ""; String hardboard = ""; String log = ""; String stoneRock = ""; String woodSiding = ""; String otherExterior = ""; String composition = ""; String concreteTile = ""; String flat = ""; String metal = ""; String rubberMembrane = ""; String tarAndGravel = ""; String tile = ""; String woodShake = ""; String otherRoof = ""; String name = ""; String address = ""; String email = ""; String phone = ""; String comments = ""; boolean validatePrice = false; boolean badPrice = false; boolean validateAcreage = false; boolean badAcreage = false; boolean validateSquareFootage = false; boolean badSquareFootage = false; boolean validateName = false; boolean badName = false; boolean validateEmail = false; boolean badEmail = false; boolean validatePhone = false; boolean badPhone = false; boolean validationFailed = false; boolean mailNow = false; //**************************************************************************************/ //check whether the info is ready to be sent if(request.getParameter("Action") != null && request.getParameter("Action").equals("Send")) { //send the information now mailNow = true; Properties props = new Properties(); props.put("mail.smtp.host", "localhost"); Session s = Session.getInstance(props, null); MimeMessage message = new MimeMessage(s); String fromString = request.getParameter("Email"); if(fromString == null || fromString.trim().equals("")) { fromString = "NoEmailAddress@branson1realty.com"; } InternetAddress from = new InternetAddress(fromString); message.setFrom(from); InternetAddress to = new InternetAddress("greg@branson1realty.com"); message.addRecipient(Message.RecipientType.TO, to); message.setSubject("Branson Property Locator - \"" + request.getParameter("Name") + "\""); String text = "The following is information sent by a visitor of Branson1Realty.com:\n\n"; message.setText(request.getParameter("Message")); Transport.send(message); } else { //get the current page number, otherwise set it to 1 if(request.getParameter("CurrentPage") != null) { currentPage = Integer.parseInt(request.getParameter("CurrentPage")); } //*********************************************************************************************************/ //get all info that is currently known type = request.getParameter("Type"); if(type == null) { type = "Residential"; } landOnly = request.getParameter("LandOnly"); if(landOnly == null) { landOnly = ""; } branson = request.getParameter("Branson"); if(branson == null) { branson = ""; } bransonWest = request.getParameter("BransonWest"); if(bransonWest == null) { bransonWest = ""; } kimberlingCity = request.getParameter("KimberlingCity"); if(kimberlingCity == null) { kimberlingCity = ""; } forsyth = request.getParameter("Forsyth"); if(forsyth == null) { forsyth = ""; } lampe = request.getParameter("Lampe"); if(lampe == null) { lampe = ""; } rockawayBeach = request.getParameter("RockawayBeach"); if(rockawayBeach == null) { rockawayBeach = ""; } shellKnob = request.getParameter("ShellKnob"); if(shellKnob == null) { shellKnob = ""; } otherCity = request.getParameter("OtherCity"); if(otherCity == null) { otherCity = ""; } priceMin = request.getParameter("PriceMin"); if(priceMin == null) { priceMin = "0"; } priceMax = request.getParameter("PriceMax"); if(priceMax == null) { priceMax = "10000000"; } residentialType = request.getParameter("ResidentialType"); if(residentialType == null) { residentialType = "House"; } agricultural = request.getParameter("Agricultural"); if(agricultural == null) { agricultural = ""; } commercial = request.getParameter("Commercial"); if(commercial == null) { commercial = ""; } downtown = request.getParameter("Downtown"); if(downtown == null) { downtown = ""; } industrial = request.getParameter("Industrial"); if(industrial == null) { industrial = ""; } mixedUse = request.getParameter("MixedUse"); if(mixedUse == null) { mixedUse = ""; } otherZoning = request.getParameter("OtherZoning"); if(otherZoning == null) { otherZoning = ""; } sqFtMin = request.getParameter("SqFtMin"); if(sqFtMin == null) { sqFtMin = "0"; } sqFtMax = request.getParameter("SqFtMax"); if(sqFtMax == null) { sqFtMax = "100000"; } acreageMin = request.getParameter("AcreageMin"); if(acreageMin == null) { acreageMin = "0"; } acreageMax = request.getParameter("AcreageMax"); if(acreageMax == null) { acreageMax = "100000"; } bedrooms = request.getParameter("Bedrooms"); if(bedrooms == null) { bedrooms = "1"; } bathrooms = request.getParameter("Bathrooms"); if(bathrooms == null) { bathrooms = "1"; } bullShoals = request.getParameter("BullShoals"); if(bullShoals == null) { bullShoals = ""; } taneycomo = request.getParameter("Taneycomo"); if(taneycomo == null) { taneycomo = ""; } tableRock = request.getParameter("TableRock"); if(tableRock == null) { tableRock = ""; } otherLake = request.getParameter("OtherLake"); if(otherLake == null) { otherLake = ""; } posession30Days = request.getParameter("Posession30Days"); if(posession30Days == null) { posession30Days = ""; } posession60Days = request.getParameter("Posession60Days"); if(posession60Days == null) { posession60Days = ""; } posession90Days = request.getParameter("Posession90Days"); if(posession90Days == null) { posession90Days = ""; } posessionAtClosing = request.getParameter("PosessionAtClosing"); if(posessionAtClosing == null) { posessionAtClosing = ""; } assumption = request.getParameter("Assumption"); if(assumption == null) { assumption = ""; } cash = request.getParameter("Cash"); if(cash == null) { cash = ""; } exchange = request.getParameter("Exchange"); if(exchange == null) { exchange = ""; } governmentLoan = request.getParameter("GovernmentLoan"); if(governmentLoan == null) { governmentLoan = ""; } attached = request.getParameter("Attached"); if(attached == null) { attached = ""; } detached = request.getParameter("Detached"); if(detached == null) { detached = ""; } carport = request.getParameter("Carport"); if(carport == null) { carport = ""; } noGarage = request.getParameter("NoGarage"); if(noGarage == null) { noGarage = ""; } dock = request.getParameter("Dock"); if(dock == null) { dock = ""; } slip = request.getParameter("Slip"); if(slip == null) { slip = ""; } indoorPool = request.getParameter("IndoorPool"); if(indoorPool == null) { indoorPool = ""; } outdoorPool = request.getParameter("OutdoorPool"); if(outdoorPool == null) { outdoorPool = ""; } tennisCourts = request.getParameter("TennisCourts"); if(tennisCourts == null) { tennisCourts = ""; } basketballCourts = request.getParameter("BasketballCourts"); if(basketballCourts == null) { basketballCourts = ""; } miniatureGolf = request.getParameter("MiniatureGolf"); if(miniatureGolf == null) { miniatureGolf = ""; } boatRentals = request.getParameter("BoatRentals"); if(boatRentals == null) { boatRentals = ""; } fitnessCenter = request.getParameter("FitnessCenter"); if(fitnessCenter == null) { fitnessCenter = ""; } horseshoePits = request.getParameter("HorseshoePits"); if(horseshoePits == null) { horseshoePits = ""; } picnicArea = request.getParameter("PicnicArea"); if(picnicArea == null) { picnicArea = ""; } publicBeach = request.getParameter("PublicBeach"); if(publicBeach == null) { publicBeach = ""; } shuffleBoard = request.getParameter("ShuffleBoard"); if(shuffleBoard == null) { shuffleBoard = ""; } volleyball = request.getParameter("Volleyball"); if(volleyball == null) { volleyball = ""; } fourPlex = request.getParameter("FourPlex"); if(fourPlex == null) { fourPlex = ""; } bungalow = request.getParameter("Bungalow"); if(bungalow == null) { bungalow = ""; } capeCod = request.getParameter("CapeCod"); if(capeCod == null) { capeCod = ""; } colonial = request.getParameter("Colonial"); if(colonial == null) { colonial = ""; } contemporary = request.getParameter("Contemporary"); if(contemporary == null) { contemporary = ""; } duplex = request.getParameter("Duplex"); if(duplex == null) { duplex = ""; } traditional = request.getParameter("Traditional"); if(traditional == null) { traditional = ""; } tudor = request.getParameter("Tudor"); if(tudor == null) { tudor = ""; } victorian = request.getParameter("Victorian"); if(victorian == null) { victorian = ""; } otherStyle = request.getParameter("OtherStyle"); if(otherStyle == null) { otherStyle = ""; } aluminumSteelVinyl = request.getParameter("AluminumSteelVinyl"); if(aluminumSteelVinyl == null) { aluminumSteelVinyl = ""; } block = request.getParameter("Block"); if(block == null) { block = ""; } brick = request.getParameter("Brick"); if(brick == null) { brick = ""; } brickVeneer = request.getParameter("BrickVeneer"); if(brickVeneer == null) { brickVeneer = ""; } hardboard = request.getParameter("Hardboard"); if(hardboard == null) { hardboard = ""; } log = request.getParameter("Log"); if(log == null) { log = ""; } stoneRock = request.getParameter("StoneRock"); if(stoneRock == null) { stoneRock = ""; } woodSiding = request.getParameter("WoodSiding"); if(woodSiding == null) { woodSiding = ""; } otherExterior = request.getParameter("OtherExterior"); if(otherExterior == null) { otherExterior = ""; } composition = request.getParameter("Composition"); if(composition == null) { composition = ""; } concreteTile = request.getParameter("ConcreteTile"); if(concreteTile == null) { concreteTile = ""; } flat = request.getParameter("Flat"); if(flat == null) { flat = ""; } metal = request.getParameter("Metal"); if(metal == null) { metal = ""; } rubberMembrane = request.getParameter("RubberMembrane"); if(rubberMembrane == null) { rubberMembrane = ""; } tarAndGravel = request.getParameter("TarAndGravel"); if(tarAndGravel == null) { tarAndGravel = ""; } tile = request.getParameter("Tile"); if(tile == null) { tile = ""; } woodShake = request.getParameter("WoodShake"); if(woodShake == null) { woodShake = ""; } otherRoof = request.getParameter("OtherRoof"); if(otherRoof == null) { otherRoof = ""; } name = request.getParameter("Name"); if(name == null) { name = ""; } address = request.getParameter("Address"); if(address == null) { address = ""; } email = request.getParameter("Email"); if(email == null) { email = ""; } phone = request.getParameter("Phone"); if(phone == null) { phone = ""; } comments = request.getParameter("Comments"); if(comments == null) { comments = ""; } //*********************************************************************************************************/ //perform validation of previous page's data //at the end of this section of code, the current page will be set correctly //figure out what needs validated validatePrice = Boolean.valueOf(request.getParameter("ShowPrice")).booleanValue(); validateAcreage = Boolean.valueOf(request.getParameter("ShowAcreage")).booleanValue(); validateSquareFootage = Boolean.valueOf(request.getParameter("ShowSquareFootage")).booleanValue(); validateName = Boolean.valueOf(request.getParameter("ShowName")).booleanValue(); validateEmail = Boolean.valueOf(request.getParameter("ShowEmail")).booleanValue(); validatePhone = Boolean.valueOf(request.getParameter("ShowPhone")).booleanValue(); //validate things that need validated if(currentPage != 0) { if(validatePrice) { if(Integer.parseInt(priceMin) > Integer.parseInt(priceMax)) { badPrice = true; validationFailed = true; } } if(validateAcreage) { if(Double.parseDouble(acreageMin) > Double.parseDouble(acreageMax)) { badAcreage = true; validationFailed = true; } } if(validateSquareFootage) { if(Integer.parseInt(sqFtMin) > Integer.parseInt(sqFtMax)) { badSquareFootage = true; validationFailed = true; } } if(validateName) { if(name.equals("")) { badName = true; validationFailed = true; } } if(validateEmail && validatePhone) { if(email.equals("") && phone.equals("")) { badEmail = true; badPhone = true; validationFailed = true; } } //change the page if validation passed if(validationFailed == false) { //increment the page number ++currentPage; //adjust the number as needed if(currentPage == 3) { //page 3 is only shown for houses and condos if(type.equals("Commercial") || landOnly.equals("yes")) { //need to skip page 3 ++currentPage; } } if(currentPage > 5) { //oops, too far //wrap around to page 1 currentPage = 1; } } } else { //begin with page 1 currentPage = 1; } //*********************************************************************************************************/ //set the categories that will be shown to the user if(currentPage == 1) { showType = true; showCity = true; showPrice = true; showLandOnly = true; } else if(currentPage == 2) { showLake = true; showPosession = true; showTerms = true; if(landOnly.equals("yes")) { showAcreage = true; } else { showSquareFootage = true; } if(type.equals("Commercial")) { showZoning = true; } else if(!landOnly.equals("yes")) { //type is "Residential" and landOnly is false showResidentialType = true; showBedAndBath = true; } } else if(currentPage == 3) { if(type.equals("Residential")) { showGarage = true; if(bullShoals.equals("yes") || taneycomo.equals("yes") || tableRock.equals("yes") || otherLake.equals("yes")) { showDockSlip = true; } if(residentialType.equals("Condominium")) { showAmenities = true; } else { //residentialType is "House" showStyle = true; showExterior = true; showRoof = true; } } } else if(currentPage == 4) { showName = true; showAddress = true; showEmail = true; showPhone = true; showComments = true; } else { //current page is 5 showConfirmation = true; } } %>
  Branson Missouri Branson #1 Realty.com  
 
 
   

Branson 1 Realty - Branson Property Locator

 
 

Featured Sale PropertiesFeatured Sale Properties

Online Property SearchOnline Property Search

Real Estate LinksReal Estate Links

Terms & DefinitionsTerms & Definitions

Payment CalculatorPayment Calculator

Banks & AppraisersBanks & Appraisers

AttorneysAttorneys

Title & Escrow Co.Title & Excrow Co.

Ideal Property LocatorIdeal Property Locator

Ideal Rental LocatorIdeal Rental Locator

Property ManagementProperty Management

Lodging / ReservationsLodging / Reservations

Shows & AttractionsShows & Attractions

Local WeatherLocal Weather

Area MapsArea Maps





Branson Reserve
Reserve Branson
MO Music Shows
Vacation Reservations
Online Travel Services
Click Here


Home
  <% if(mailNow == true) { %>
Your information request has been sent. Please continue to browse our site using the links to the left.
<% } else if(showConfirmation == false) { %>
<% if(showType == true) { %> <% } else { %> <% } if(showLandOnly == true) { %> <% } else { %> <% } if(showCity == true) { %> <% } else { %> <% } if(showPrice == true) { %> <% if(badPrice == true) { %> <% } %> <% } else { %> <% } if(showResidentialType == true) { %> <% } else { %> <% } if(showZoning == true) { %> <% } else { %> <% } if(showSquareFootage == true) { %> <% if(badSquareFootage == true) { %> <% } %> <% } else { %> <% } if(showAcreage == true) { %> <% if(badAcreage == true) { %> <% } %> <% } else { %> <% } if(showBedAndBath == true) { %> <% } else { %> <% } if(showLake == true) { %> <% } else { %> <% } if(showPosession == true) { %> <% } else { %> <% } if(showTerms == true) { %> <% } else { %> <% } if(showGarage == true) { %> <% } else { %> <% } if(showDockSlip == true) { %> <% } else { %> <% } if(showAmenities == true) { %> <% } else { %> <% } if(showStyle == true) { %> <% } else { %> <% } if(showExterior == true) { %> <% } else { %> <% } if(showRoof == true) { %> <% } else { %> <% } if(showName == true) { %> <% if(badName == true) { %> <% } %> <% } else { %> <% } if(showAddress == true) { %> <% } else { %> <% } if(showEmail == true) { %> <% if(badEmail == true || badPhone == true) { %> <% } %> <% } else { %> <% } if(showPhone == true) { %> <% } else { %> <% } if(showComments == true) { %> <% } else { %> <% } %> <% } else { //showConfirmation is true //variables to collect the nicely formatted user info String pref = ""; String message = ""; //now let's nicely format the user information //start with the contact info message = "Name: " + name + '\n'; if(address.equals("")) { message += "Address: (Blank)\n"; } else { //Address is not blank message += "Address:\n" + address + '\n'; } if(phone.equals("")) { message +="Phone: (Blank)\n"; } else { //phone is not blank message += "Phone: " + phone + '\n'; } if(email.equals("")) { message +="E-mail: (Blank)\n\n"; } else { //phone is not blank message += "E-mail: " + email + "\n\n"; } //figure out what type of property the user wants if(type.equals("Residential")) { if(landOnly.equals("yes")) { message += "Looking for a residential land or lot\n\n"; } else { //landOnly is false if(residentialType.equals("House")) { message += "Looking for a House with at least " + bedrooms + " bedroom(s) and " + bathrooms + " bathroom(s)\n\n"; } else { //residentialType is condo message += "Looking for a Condominium with at least " + bedrooms + " bedroom(s) and " + bathrooms + " bathroom(s)\n\n"; } } } else { //type is commercial if(landOnly.equals("yes")) { message += "Looking for a commercial land or lot\n\n"; } else { //landOnly is false message += "Looking for a commercial building\n\n"; } } //tack on the comments if they are not empty if(!comments.trim().equals("")) { message += "Comments:\n" + comments + "\n\n"; } //now look at the city if(branson.equals("yes")) { if(!pref.equals("")) { //already have one on the list, so add a comma pref += ", "; } pref += "Branson"; } if(bransonWest.equals("yes")) { if(!pref.equals("")) { //already have one on the list, so add a comma pref += ", "; } pref += "Branson West"; } if(kimberlingCity.equals("yes")) { if(!pref.equals("")) { //already have one on the list, so add a comma pref += ", "; } pref += "Kimberling City"; } if(forsyth.equals("yes")) { if(!pref.equals("")) { //already have one on the list, so add a comma pref += ", "; } pref += "Forsyth"; } if(lampe.equals("yes")) { if(!pref.equals("")) { //already have one on the list, so add a comma pref += ", "; } pref += "Lampe"; } if(rockawayBeach.equals("yes")) { if(!pref.equals("")) { //already have one on the list, so add a comma pref += ", "; } pref += "Rockaway Beach"; } if(shellKnob.equals("yes")) { if(!pref.equals("")) { //already have one on the list, so add a comma pref += ", "; } pref += "Shell Knob"; } if(otherCity.equals("yes")) { if(!pref.equals("")) { //already have one on the list, so add a comma pref += ", "; } pref += "Other"; } if(!pref.equals("")) { message += "City: " + pref + "\n"; pref = ""; } //next it's the price range if(priceMax.equals("10000000")) { //no maximum price message += "Price: " + priceMin + " and up\n"; } else { //there is a specified max price message += "Price: " + priceMin + " - " + priceMax + '\n'; } //look at lake access preferences //lake and dock/slip if(bullShoals.equals("yes")) { if(!pref.equals("")) { //already have one on the list, so add a comma pref += ", "; } pref += "Bull Shoals"; } if(taneycomo.equals("yes")) { if(!pref.equals("")) { //already have one on the list, so add a comma pref += ", "; } pref += "Taneycomo"; } if(tableRock.equals("yes")) { if(!pref.equals("")) { //already have one on the list, so add a comma pref += ", "; } pref += "Table Rock"; } if(otherLake.equals("yes")) { if(!pref.equals("")) { //already have one on the list, so add a comma pref += ", "; } pref += "Other"; } if(!pref.equals("")) { message += "Lake: " + pref + '\n'; pref = ""; if(dock.equals("yes")) { if(!pref.equals("")) { //already have one on the list, so add a comma pref += ", "; } pref += "Dock"; } if(slip.equals("yes")) { if(!pref.equals("")) { //already have one on the list, so add a comma pref += ", "; } pref += "Slip"; } if(!pref.equals("")) { message += "Dock/Slip: " + pref + '\n'; } } //the acreage or square footage if(landOnly.equals("yes")) { if(acreageMax.equals("100000")) { //no maximum size message += "Acreage: At least " + acreageMin + '\n'; } else { //maximum size is set message += "Acreage: " + acreageMin + " - " + acreageMax + '\n'; } } else { //house, condo, or building if(sqFtMax.equals("100000")) { //no maximum size message += "Square Feet: At least " + sqFtMin + '\n'; } else { //maximum size is set message += "Square Feet: " + sqFtMin + " - " + sqFtMax + '\n'; } } //zoning (if applicable) if(type.equals("Commercial")) { if(agricultural.equals("yes")) { if(!pref.equals("")) { //already have one on the list, so add a comma pref += ", "; } pref += "Agricultural"; } if(commercial.equals("yes")) { if(!pref.equals("")) { //already have one on the list, so add a comma pref += ", "; } pref += "Commercial"; } if(downtown.equals("yes")) { if(!pref.equals("")) { //already have one on the list, so add a comma pref += ", "; } pref += "Downtown"; } if(industrial.equals("yes")) { if(!pref.equals("")) { //already have one on the list, so add a comma pref += ", "; } pref += "Industrial"; } if(mixedUse.equals("yes")) { if(!pref.equals("")) { //already have one on the list, so add a comma pref += ", "; } pref += "Mixed Use"; } if(otherZoning.equals("yes")) { if(!pref.equals("")) { //already have one on the list, so add a comma pref += ", "; } pref += "Other"; } if(!pref.equals("")) { message += "Zoning: " + pref + "\n"; pref = ""; } } //posession time if(posession30Days.equals("yes")) { if(!pref.equals("")) { //already have one on the list, so add a comma pref += ", "; } pref += "30 Days"; } if(posession60Days.equals("yes")) { if(!pref.equals("")) { //already have one on the list, so add a comma pref += ", "; } pref += "60 Days"; } if(posession90Days.equals("yes")) { if(!pref.equals("")) { //already have one on the list, so add a comma pref += ", "; } pref += "90 Days"; } if(posessionAtClosing.equals("yes")) { if(!pref.equals("")) { //already have one on the list, so add a comma pref += ", "; } pref += "At Closing"; } if(!pref.equals("")) { message += "Posession: " + pref + "\n"; pref = ""; } //payment terms if(assumption.equals("yes")) { if(!pref.equals("")) { //already have one on the list, so add a comma pref += ", "; } pref += "Assumption"; } if(cash.equals("yes")) { if(!pref.equals("")) { //already have one on the list, so add a comma pref += ", "; } pref += "Cash"; } if(exchange.equals("yes")) { if(!pref.equals("")) { //already have one on the list, so add a comma pref += ", "; } pref += "Exchange"; } if(governmentLoan.equals("yes")) { if(!pref.equals("")) { //already have one on the list, so add a comma pref += ", "; } pref += "Government Loan"; } if(!pref.equals("")) { message += "Payment Terms: " + pref + "\n"; pref = ""; } //garage (if applicable) if(type.equals("Residential")) { if(attached.equals("yes")) { if(!pref.equals("")) { //already have one on the list, so add a comma pref += ", "; } pref += "Attached"; } if(detached.equals("yes")) { if(!pref.equals("")) { //already have one on the list, so add a comma pref += ", "; } pref += "Detached"; } if(carport.equals("yes")) { if(!pref.equals("")) { //already have one on the list, so add a comma pref += ", "; } pref += "Carport"; } if(noGarage.equals("yes")) { if(!pref.equals("")) { //already have one on the list, so add a comma pref += ", "; } pref += "No Garage"; } if(!pref.equals("")) { message += "Garage: " + pref + "\n"; pref = ""; } } //amenities (if applicable) if(type.equals("Residential") && residentialType.equals("Condiminium")) { if(indoorPool.equals("yes")) { if(!pref.equals("")) { //already have one on the list, so add a comma pref += ", "; } pref += "Indoor Pool"; } if(outdoorPool.equals("yes")) { if(!pref.equals("")) { //already have one on the list, so add a comma pref += ", "; } pref += "Outdoor Pool"; } if(tennisCourts.equals("yes")) { if(!pref.equals("")) { //already have one on the list, so add a comma pref += ", "; } pref += "Tennis Courts"; } if(basketballCourts.equals("yes")) { if(!pref.equals("")) { //already have one on the list, so add a comma pref += ", "; } pref += "Basketball Courts"; } if(miniatureGolf.equals("yes")) { if(!pref.equals("")) { //already have one on the list, so add a comma pref += ", "; } pref += "Miniature Golf"; } if(boatRentals.equals("yes")) { if(!pref.equals("")) { //already have one on the list, so add a comma pref += ", "; } pref += "Boat Rentals"; } if(fitnessCenter.equals("yes")) { if(!pref.equals("")) { //already have one on the list, so add a comma pref += ", "; } pref += "Fitness Center"; } if(horseshoePits.equals("yes")) { if(!pref.equals("")) { //already have one on the list, so add a comma pref += ", "; } pref += "Horseshoe Pits"; } if(picnicArea.equals("yes")) { if(!pref.equals("")) { //already have one on the list, so add a comma pref += ", "; } pref += "Picnic Area"; } if(publicBeach.equals("yes")) { if(!pref.equals("")) { //already have one on the list, so add a comma pref += ", "; } pref += "Public Beach"; } if(shuffleBoard.equals("yes")) { if(!pref.equals("")) { //already have one on the list, so add a comma pref += ", "; } pref += "ShuffleBoard"; } if(volleyball.equals("yes")) { if(!pref.equals("")) { //already have one on the list, so add a comma pref += ", "; } pref += "Volleyball"; } if(!pref.equals("")) { message += "Amenities: " + pref + "\n"; pref = ""; } } //style (if applicable) if(type.equals("Residential") && residentialType.equals("House")) { if(fourPlex.equals("yes")) { if(!pref.equals("")) { //already have one on the list, so add a comma pref += ", "; } pref += "4-Plex"; } if(bungalow.equals("yes")) { if(!pref.equals("")) { //already have one on the list, so add a comma pref += ", "; } pref += "Bungalow"; } if(capeCod.equals("yes")) { if(!pref.equals("")) { //already have one on the list, so add a comma pref += ", "; } pref += "Cape Cod"; } if(colonial.equals("yes")) { if(!pref.equals("")) { //already have one on the list, so add a comma pref += ", "; } pref += "Colonial"; } if(contemporary.equals("yes")) { if(!pref.equals("")) { //already have one on the list, so add a comma pref += ", "; } pref += "Contemporary"; } if(duplex.equals("yes")) { if(!pref.equals("")) { //already have one on the list, so add a comma pref += ", "; } pref += "Duplex"; } if(traditional.equals("yes")) { if(!pref.equals("")) { //already have one on the list, so add a comma pref += ", "; } pref += "Traditional"; } if(tudor.equals("yes")) { if(!pref.equals("")) { //already have one on the list, so add a comma pref += ", "; } pref += "Tudor"; } if(victorian.equals("yes")) { if(!pref.equals("")) { //already have one on the list, so add a comma pref += ", "; } pref += "Victorian"; } if(otherStyle.equals("yes")) { if(!pref.equals("")) { //already have one on the list, so add a comma pref += ", "; } pref += "Other"; } if(!pref.equals("")) { message += "Style: " + pref + "\n"; pref = ""; } } //exterior (if applicable) if(type.equals("Residential") && residentialType.equals("House")) { if(aluminumSteelVinyl.equals("yes")) { if(!pref.equals("")) { //already have one on the list, so add a comma pref += ", "; } pref += "Aluminum/Steel/Vinyl"; } if(block.equals("yes")) { if(!pref.equals("")) { //already have one on the list, so add a comma pref += ", "; } pref += "Block"; } if(brick.equals("yes")) { if(!pref.equals("")) { //already have one on the list, so add a comma pref += ", "; } pref += "Brick"; } if(brickVeneer.equals("yes")) { if(!pref.equals("")) { //already have one on the list, so add a comma pref += ", "; } pref += "Brick Veneer"; } if(hardboard.equals("yes")) { if(!pref.equals("")) { //already have one on the list, so add a comma pref += ", "; } pref += "Hardboard"; } if(log.equals("yes")) { if(!pref.equals("")) { //already have one on the list, so add a comma pref += ", "; } pref += "Log"; } if(stoneRock.equals("yes")) { if(!pref.equals("")) { //already have one on the list, so add a comma pref += ", "; } pref += "Stone/Rock"; } if(woodSiding.equals("yes")) { if(!pref.equals("")) { //already have one on the list, so add a comma pref += ", "; } pref += "Wood Siding"; } if(otherExterior.equals("yes")) { if(!pref.equals("")) { //already have one on the list, so add a comma pref += ", "; } pref += "Other"; } if(!pref.equals("")) { message += "Exterior: " + pref + "\n"; pref = ""; } } //roof (if applicable) if(type.equals("Residential") && residentialType.equals("House")) { if(composition.equals("yes")) { if(!pref.equals("")) { //already have one on the list, so add a comma pref += ", "; } pref += "Composition"; } if(concreteTile.equals("yes")) { if(!pref.equals("")) { //already have one on the list, so add a comma pref += ", "; } pref += "Concrete Tile"; } if(flat.equals("yes")) { if(!pref.equals("")) { //already have one on the list, so add a comma pref += ", "; } pref += "Flat"; } if(metal.equals("yes")) { if(!pref.equals("")) { //already have one on the list, so add a comma pref += ", "; } pref += "Metal"; } if(rubberMembrane.equals("yes")) { if(!pref.equals("")) { //already have one on the list, so add a comma pref += ", "; } pref += "Rubber Membrane"; } if(tarAndGravel.equals("yes")) { if(!pref.equals("")) { //already have one on the list, so add a comma pref += ", "; } pref += "Tar and Gravel"; } if(tile.equals("yes")) { if(!pref.equals("")) { //already have one on the list, so add a comma pref += ", "; } pref += "Tile"; } if(woodShake.equals("yes")) { if(!pref.equals("")) { //already have one on the list, so add a comma pref += ", "; } pref += "woodShake"; } if(otherRoof.equals("yes")) { if(!pref.equals("")) { //already have one on the list, so add a comma pref += ", "; } pref += "Other"; } if(!pref.equals("")) { message += "Roof: " + pref + "\n"; pref = ""; } } %>
Please fill out the form to match your interests.
I am interested in a property.
checked<% } %>> I would like to purchace an empty lot or undeveloped land.

Property should be in or near the following cities
(Check any preferences.)

checked<% } %>>

Branson

checked<% } %>>

Branson West

checked<% } %>>

Kimberling City

checked<% } %>>

Forsyth

checked<% } %>>

Lampe

checked<% } %>>

Rockaway Beach

checked<% } %>>

Shell Knob

checked<% } %>>

Other

The price should be within the following range:

Please enter a valid price range.

 - 

I am interested in a .

The property should be zoned as:
(Check any preferences.)

checked<% } %>>

Agricultural

checked<% } %>>

Commercial

checked<% } %>>

Downtown

checked<% } %>>

Industrial

checked<% } %>>

Mixed Use

checked<% } %>>

Other

The square feet of floor space should lie in this range:

Please enter a valid square footage range.

 - 

The acreage of the land should lie in this range:

Please enter a valid acreage range.

 - 

There should be at least bedroom(s) and bathroom(s).

The property should be very near to one of these lakes:
(Check any preferences.)

checked<% } %>>

Bull Shoals

checked<% } %>>

Taneycomo

checked<% } %>>

Table Rock

checked<% } %>>

Other

I'd like to take posession within these time periods
(Check any preferences.)

checked<% } %>>

30 Days

checked<% } %>>

60 Days

checked<% } %>>

90 Days

checked<% } %>>

At Closing

I am interested in the following financing terms:
(Check any preferences.)

checked<% } %>>

Assumption

checked<% } %>>

Cash

checked<% } %>>

Exchange

checked<% } %>>

Government Loan

The property should have the following type of garage
(Check any preferences.)

checked<% } %>>

Attached

checked<% } %>>

Detached

checked<% } %>>

Carport

checked<% } %>>

No Garage

I would like to have access to the following boat storage:
(Check any preferences.)

checked<% } %>>

Dock

checked<% } %>>

Slip

The condominium complex should have the following amenities:
(Check any preferences.)

checked<% } %>>

Indoor Pool

checked<% } %>>

Outdoor Pool

checked<% } %>>

Tennis Courts

checked<% } %>>

Basketball Courts

checked<% } %>>

Miniature Golf

checked<% } %>>

Boat Rentals

checked<% } %>>

Fitness Center

checked<% } %>>

Horseshoe Pits

checked<% } %>>

Picnic Area

checked<% } %>>

Public Beach

checked<% } %>>

ShuffleBoard

checked<% } %>>

Volleyball

The house should should be built in the following style:
(Check any preferences.)

checked<% } %>>

4-Plex

checked<% } %>>

Bungalow

checked<% } %>>

Cape Cod

checked<% } %>>

Colonial

checked<% } %>>

Contemporary

checked<% } %>>

Duplex

checked<% } %>>

Traditional

checked<% } %>>

Tudor

checked<% } %>>

Victorian

checked<% } %>>

Other

The house should have the following type of exterior:
(Check any preferences.)

checked<% } %>>

Aluminum/Steel/Vinyl

checked<% } %>>

Block

checked<% } %>>

Brick

checked<% } %>>

Brick Veneer

checked<% } %>>

Hardboard

checked<% } %>>

Log

checked<% } %>>

Stone/Rock

checked<% } %>>

Wood Siding

checked<% } %>>

Other

   

The house should have the following type of roof:
(Check any preferences.)

checked<% } %>>

Composition

checked<% } %>>

Concrete Tile

checked<% } %>>

Flat

checked<% } %>>

Metal

checked<% } %>>

Rubber Membrane

checked<% } %>>

Tar and Gravel

checked<% } %>>

Tile

checked<% } %>>

Wood Shake

checked<% } %>>

Other

   

Name

Please enter your name.

Address (Including City, State, and ZIP)

E-mail

Please enter your e-mail address and/or phone number.

Phone (Including Area Code)

Additional Comments and Criteria

You will have a chance to confirm this information before it is sent

<% } %>
Please verify the information that you entered.
<%=message%>