<%@LANGUAGE="JScript" %>
<%
// Write a user entered value into the HTML page safely.
function writeSafeValue( sName ) {
var sValue;
sValue = "" + Request.QueryString( sName ) + "";
try {
if( typeof( sValue ) == "string" ) {
if( sValue != "undefined" ) {
// Do net let the user attempt to input HTML Code or
// SSI (Server Side Include) directives.
sValue = sValue.replace( /</g, "<" );
sValue = sValue.replace( />/g, ">" );
sValue = sValue.replace( /\"/g, """ );
}
else {
sValue = "";
}
}
} catch( e ) {
// Catch and display any errors that occur.
Response.Write( "writeValue( "" + sName + "" ) ERROR " + e.number + ": " + e.description + " - sValue: " + sValue );
sValue = "";
}
Response.Write( sValue );
}
%>
<HTML>
<HEAD>
<TITLE>Contact Me</TITLE>
<SCRIPT LANGUAGE="JavaScript">
<!--
// Ensure the user of this form has entered the required fields.
function validateData()
{
var txtFirstName = getElementById( "FIRST_NAME" );
var txtLastName = getElementById( "LAST_NAME" );
var txtEmail = getElementById( "EMAIL" );
var txtPhoneAreaCode = getElementById( "PHONE_AREA_CODE" );
var txtPhoneLocalCode = getElementById( "PHONE_LOCAL_CODE" );
var txtPhoneNumber = getElementById( "PHONE_NUMBER" );
var txtComments = getElementById( "COMMENTS" );
var sPhoneValue = txtPhoneAreaCode.value + txtPhoneLocalCode.value + txtPhoneNumber.value;
var bRequirementsMet = true;
var txtFocusField;
if( txtFirstName.value.length == 0 && txtLastName.value.length == 0 ) {
txtFocusField = txtFirstName;
bRequirementsMet = false;
}
if( bRequirementsMet && ( txtEmail.value.length == 0 && sPhoneValue.length == 0 ) ) {
txtFocusField = txtEmail;
bRequirementsMet = false;
}
var txtZip = getElementById( "ZIP" );
txtZip.value = txtZip.value.toUpperCase();
txtZip = getElementById( "SELLER_ZIP" );
txtZip.value = txtZip.value.toUpperCase();
if( !bRequirementsMet ) {
window.alert( "\nPlease enter your FIRST NAME or LAST NAME\nand\nPHONE NUMBER or EMAIL ADDRESS.\n" );
txtFocusField.focus();
} else {
if( sPhoneValue.length > 0 && ( txtPhoneAreaCode.value.length != 3 || txtPhoneLocalCode.value.length != 3 || txtPhoneNumber.value.length != 4 ) ) {
bRequirementsMet = false;
window.alert( "\nYou have entered an invalid phone number. Please enter a correct phone number.\n" );
txtPhoneAreaCode.focus();
}
if( bRequirementsMet && txtEmail.value.length > 0 ) {
var nAtSymbolIndex = txtEmail.value.indexOf( "@" );
var sUserName = "";
var sServerName = "";
if( nAtSymbolIndex > 0 && nAtSymbolIndex < txtEmail.value.length - 1 ) {
sUserName = txtEmail.value.substring( 0, nAtSymbolIndex );
sServerName = txtEmail.value.substring( nAtSymbolIndex + 1 );
nAtSymbolIndex = sServerName.indexOf( "." );
}
if( nAtSymbolIndex == -1 || sUserName.length == 0 || sServerName.length == 0 ) {
window.alert( "You have entered an invalid email address. Please enter a correct email address." );
txtEmail.focus();
bRequirementsMet = false;
}
}
if( bRequirementsMet && typeof( txtComments ) != "undefined" && txtComments.value.length > 2900 ) {
bRequirementsMet = false;
window.alert( "\nYour comments are too long. Please try to limit the length of your comments to 2900 characters.\n" );
txtComments.focus();
}
}
// The SELLER minimum price must be less than or equal to the maximum price.
if( bRequirementsMet ) {
var txtMinPrice = getElementById( "SELLER_MIN_PRICE" );
var txtMaxPrice = getElementById( "SELLER_MAX_PRICE" );
if( typeof( txtMinPrice ) != "undefined" && typeof( txtMaxPrice ) != "undefined" ) {
var sMinPrice = txtMinPrice.value;
var sMaxPrice = txtMaxPrice.value;
// Pre-parse the string to remove any non digit characters
sMinPrice = sMinPrice.replace( /\$|\+|,/g, "" );
sMaxPrice = sMaxPrice.replace( /\$|\+|,/g, "" );
// Convert from a string to a number.
var nMinPrice = new Number( sMinPrice );
var nMaxPrice = new Number( sMaxPrice );
if (sMinPrice.length != 0 && sMaxPrice.length != 0) {
if( nMinPrice != Number.NaN && nMaxPrice != Number.NaN && nMinPrice > nMaxPrice ) {
window.alert( "\nYou have specified an invalid minimum or maximum price. Please\nensure that the minimum price is not greater than the maximum price\nin the price range section.\n" )
txtMaxPrice.focus();
bRequirementsMet = false;
}
}
}
}
// The BUYER minimum price must be less than or equal to the maximum price.
if( bRequirementsMet ) {
var txtMinPrice = getElementById( "BUYER_MIN_PRICE" );
var txtMaxPrice = getElementById( "BUYER_MAX_PRICE" );
if( typeof( txtMinPrice ) != "undefined" && typeof( txtMaxPrice ) != "undefined" ) {
var sMinPrice = txtMinPrice.value;
var sMaxPrice = txtMaxPrice.value;
// Pre-parse the string to remove any non digit characters
sMinPrice = sMinPrice.replace( /\$|\+|,/g, "" );
sMaxPrice = sMaxPrice.replace( /\$|\+|,/g, "" );
// Convert from a string to a number.
var nMinPrice = new Number( sMinPrice );
var nMaxPrice = new Number( sMaxPrice );
if( nMinPrice != Number.NaN && nMaxPrice != Number.NaN && nMinPrice > nMaxPrice ) {
window.alert( "\nYou have specified an invalid minimum or maximum price. Please\nensure that the minimum price is not greater than the maximum price\nin the price range section.\n" )
txtMaxPrice.focus();
bRequirementsMet = false;
}
}
}
return bRequirementsMet;
}
// Retrieve an element by it's ID attribute
// NOTE: This function is used in place of
// 'document.getElementById() to support
// Internet Explorer 4.01.
function getElementById( id ) {
if( typeof( document.getElementById ) == "undefined" ) {
for( var i = 0; i < document.all.length; i++ ) {
var el = document.all( i );
if( el.id == id ) {
return el;
}
}
}
else {
return document.getElementById( id );
}
}
// Initialize the document
function init() {
var statusSeller = getElementById( "STATUS_SELLER" );
var statusBoth = getElementById( "STATUS_BOTH" );
var status = "Buyer";
if( statusSeller.checked ) {
status = "Seller";
} else if ( statusBoth.checked ) {
status = "Both";
}
enableSection( status );
size( getElementById( "TABLE_PICTURES" ) );
var backgroundImage = getElementById( "BACKGROUND_IMAGE" );
if( typeof( backgroundImage ) != "undefined" && backgroundImage != null ) {
backgroundImage.style.visibility = "visible";
}
enableAddressFields( false );
window.moveTo( 0, 0 );
window.resizeTo( screen.availWidth, screen.availHeight );
getElementById( "FIRST_NAME" ).onkeypress = Capitalize;
getElementById( "LAST_NAME" ).onkeypress = Capitalize;
getElementById( "STREET_NAME" ).onkeypress = Capitalize;
getElementById( "CITY" ).onkeypress = Capitalize;
getElementById( "STATE" ).onkeypress = Capitalize;
getElementById( "LAST_NAME" ).onkeypress = Capitalize;
getElementById( "BUYER_CITY" ).onkeypress = Capitalize;
getElementById( "BUYER_STATE" ).onkeypress = Capitalize;
getElementById( "BUYER_COUNTY" ).onkeypress = Capitalize;
getElementById( "BUYER_AREA" ).onkeypress = Capitalize;
getElementById( "SELLER_STREET_NAME" ).onkeypress = Capitalize;
getElementById( "SELLER_CITY" ).onkeypress = Capitalize;
getElementById( "SELLER_STATE" ).onkeypress = Capitalize;
getElementById( "SELLER_COUNTY" ).onkeypress = Capitalize;
getElementById( "SELLER_AREA" ).onkeypress = Capitalize;
}
function size( objTable ) {
var backgroundImage = getElementById( "BACKGROUND_IMAGE" );
if( typeof( backgroundImage ) != "undefined" && backgroundImage != null && typeof( objTable ) != "undefined" && objTable != null ) {
backgroundImage.style.left = objTable.offsetLeft;
backgroundImage.style.top = objTable.offsetTop;
backgroundImage.style.width = objTable.offsetWidth;
backgroundImage.style.height = objTable.offsetHeight;
}
}
// Enable the Buyer, Seller or both sections
function enableSection( section ) {
setControl( getElementById( "SELLER_MIN_PRICE" ), section == "Buyer" );
setControl( getElementById( "SELLER_MAX_PRICE" ), section == "Buyer" );
setControl( getElementById( "SELLER_SQUAREFEET" ), section == "Buyer" );
setControl( getElementById( "SELLER_BEDROOMS" ), section == "Buyer" );
setControl( getElementById( "SELLER_BATHROOMS" ), section == "Buyer" );
setControl( getElementById( "SELLER_AGE" ), section == "Buyer" );
setControl( getElementById( "SELLER_FEATURES" ), section == "Buyer" );
setControl( getElementById( "SELLER_LOCATION_SAME_ADDRESS" ), section == "Buyer" );
setControl( getElementById( "SELLER_HOUSE_NO" ), section == "Buyer" );
setControl( getElementById( "SELLER_STREET_NAME" ), section == "Buyer" );
setControl( getElementById( "SELLER_SUITE_NO" ), section == "Buyer" );
setControl( getElementById( "SELLER_CITY" ), section == "Buyer" );
setControl( getElementById( "SELLER_STATE" ), section == "Buyer" );
setControl( getElementById( "SELLER_ZIP" ), section == "Buyer" );
setControl( getElementById( "SELLER_COUNTY" ), section == "Buyer" );
setControl( getElementById( "SELLER_AREA" ), section == "Buyer" );
setControl( getElementById( "SELLER_LOCATION" ), section == "Buyer" );
setControl( getElementById( "TXT_SELLER" ), section == "Buyer" );
setControl( getElementById( "TXT_SELLER_MIN_PRICE" ), section == "Buyer" );
setControl( getElementById( "TXT_SELLER_MAX_PRICE" ), section == "Buyer" );
setControl( getElementById( "TXT_SELLER_SQUAREFEET" ), section == "Buyer" );
setControl( getElementById( "TXT_SELLER_BEDROOMS" ), section == "Buyer" );
setControl( getElementById( "TXT_SELLER_BATHROOMS" ), section == "Buyer" );
setControl( getElementById( "TXT_SELLER_AGE" ), section == "Buyer" );
setControl( getElementById( "TXT_SELLER_FEATURES" ), section == "Buyer" );
setControl( getElementById( "TXT_SELLER_LOCATION" ), section == "Buyer" );
setControl( getElementById( "BUYER_MIN_PRICE" ), section == "Seller", "$0" );
setControl( getElementById( "BUYER_MAX_PRICE" ), section == "Seller", "no maximum" );
setControl( getElementById( "BUYER_SQUAREFEET" ), section == "Seller", "0-999" );
setControl( getElementById( "BUYER_BEDROOMS" ), section == "Seller", "1" );
setControl( getElementById( "BUYER_BATHROOMS" ), section == "Seller", "1" );
setControl( getElementById( "BUYER_AGE" ), section == "Seller", "0-9" );
setControl( getElementById( "BUYER_FEATURES" ), section == "Seller" );
setControl( getElementById( "BUYER_LOCATION" ), section == "Seller" );
setControl( getElementById( "BUYER_CITY" ), section == "Seller" );
setControl( getElementById( "BUYER_STATE" ), section == "Seller" );
setControl( getElementById( "BUYER_COUNTY" ), section == "Seller" );
setControl( getElementById( "BUYER_AREA" ), section == "Seller" );
setControl( getElementById( "TXT_BUYER" ), section == "Seller" );
setControl( getElementById( "TXT_BUYER_MIN_PRICE" ), section == "Seller" );
setControl( getElementById( "TXT_BUYER_MAX_PRICE" ), section == "Seller" );
setControl( getElementById( "TXT_BUYER_SQUAREFEET" ), section == "Seller" );
setControl( getElementById( "TXT_BUYER_BEDROOMS" ), section == "Seller" );
setControl( getElementById( "TXT_BUYER_BATHROOMS" ), section == "Seller" );
setControl( getElementById( "TXT_BUYER_AGE" ), section == "Seller" );
setControl( getElementById( "TXT_BUYER_FEATURES" ), section == "Seller" );
setControl( getElementById( "TXT_BUYER_LOCATION" ), section == "Seller" );
enableAddressFields( false );
}
function enableAddressFields( clearValues ) {
var disable = getElementById( "STATUS_BUYER" ).checked || getElementById( "SELLER_LOCATION_SAME_ADDRESS" ).checked;
var ctrlHouseNo = getElementById( "SELLER_HOUSE_NO" );
var ctrlStreetName = getElementById( "SELLER_STREET_NAME" );
var ctrlSuiteNo = getElementById( "SELLER_SUITE_NO" );
var ctrlCity = getElementById( "SELLER_CITY" );
var ctrlState = getElementById( "SELLER_STATE" );
var ctrlZip = getElementById( "SELLER_ZIP" );
setControl( ctrlHouseNo, disable );
setControl( ctrlStreetName, disable );
setControl( ctrlSuiteNo, disable );
setControl( ctrlCity, disable );
setControl( ctrlState, disable );
setControl( ctrlZip, disable );
setControl( getElementById( "TXT_SELLER_HOUSE_NO" ), disable );
setControl( getElementById( "TXT_SELLER_STREET_NAME" ), disable );
setControl( getElementById( "TXT_SELLER_SUITE_NO" ), disable );
setControl( getElementById( "TXT_SELLER_CITY" ), disable );
setControl( getElementById( "TXT_SELLER_STATE" ), disable );
setControl( getElementById( "TXT_SELLER_ZIP" ), disable );
if( disable ) {
setValue( ctrlHouseNo, "HOUSE_NO" );
setValue( ctrlStreetName, "STREET_NAME" );
setValue( ctrlSuiteNo, "SUITE_NO" );
setValue( ctrlCity, "CITY" );
setValue( ctrlState, "STATE" );
setValue( ctrlZip, "ZIP" );
}
else if( typeof( clearValues ) == "undefined" ) {
clearValue( ctrlHouseNo );
clearValue( ctrlStreetName );
clearValue( ctrlSuiteNo );
clearValue( ctrlCity );
clearValue( ctrlState );
clearValue( ctrlZip );
}
}
function clearValue( obj ) {
if( typeof( obj ) != "undefined" ) {
obj.value = "";
}
}
function setValue( obj, name ) {
var obj2 = getElementById( name );
if( typeof( obj ) != "undefined" && typeof( obj2 ) != "undefined" ) {
var width = obj.offsetWidth;
obj.value = obj2.value;
obj.style.width = width;
}
}
function setControl( control, disable, value ) {
if( typeof( control ) != "undefined" ) {
control.disabled = disable;
if( disable ) {
control.value = typeof( value ) == "undefined" ? "" : value;
if( control.checked ) {
control.checked = false;
}
}
}
}
function moveToNextField( id ) {
if( window.event.keyCode != 9 ) {
if( getElementById( id ).value.length == 3 ) {
if( id == "PHONE_AREA_CODE" ) {
getElementById( "PHONE_LOCAL_CODE" ).focus();
}
else if( id == "PHONE_LOCAL_CODE" ) {
getElementById( "PHONE_NUMBER" ).focus();
}
}
}
}
function allowKeys( obj, keys ) {
var bAllowKey = false;
for( var i = 0; i < keys.length; i++ ) {
if( keys.charAt( i ) == String.fromCharCode( window.event.keyCode ) ) {
bAllowKey = true;
break;
}
}
if( !bAllowKey ) {
window.event.cancelBubble = true;
window.event.keyCode = 0;
}
}
function validateInput( obj, keys ) {
if( typeof( window.clipboardData ) != "undefined" ) {
var sData = window.clipboardData.getData( "Text" )
var sTemp = "";
if( typeof( sData ) != "undefined" ) {
for( var i = sData.length; --i >= 0; ) {
for( var j = keys.length; --j >= 0; ) {
if( sData.charAt( i ) == keys.charAt( j ) ) {
sTemp += sData.charAt( i );
}
}
}
}
window.clipboardData.setData( "Text", sTemp );
}
}
function enableBestTime() {
var txtPhoneArea = getElementById( "PHONE_AREA_CODE" );
var txtPhoneLocal = getElementById( "PHONE_LOCAL_CODE" );
var txtPhoneNumber = getElementById( "PHONE_NUMBER" );
var obgBestTime = getElementById( "BEST_TIME" );
if( typeof( txtPhoneArea ) != "undefined" && txtPhoneArea != null && typeof( obgBestTime ) != "undefined" && obgBestTime != null ) {
obgBestTime.disabled = !( txtPhoneArea.value.length != 0 || txtPhoneLocal.value.length != 0 || txtPhoneNumber.value.length != 0 );
}
}
function Capitalize()
{
var el = window.event.srcElement;
if( el == null ) return;
if( el.getAttribute( "CAP" ) == null )
{
el.setAttribute( "CAP", "1" );
if( el.value == "" ) {
var nUCharCode = String.fromCharCode( window.event.keyCode ).toUpperCase().charCodeAt(0);
window.event.keyCode = nUCharCode;
}
}
}
function Submit()
{
if( validateData() ) {
getElementById( "SUBMIT" ).disabled = true;
var pForm = getElementById( "frmMain" );
pForm.submit();
}
}
//-->
</SCRIPT>
</HEAD>
<BODY BGCOLOR="#FFFFFF" STYLE="font-SIZE: xx-small; font-family: sans-serif; COLOR: #000000; BORDER: 0.25in SOLID WHITE" onLoad="init();" onResize="size( getElementById( 'TABLE_PICTURES' ) );">
<!-- Preview text goes here -->
<CENTER>
<!-- Agent Picture and Company Logo //-->
<TABLE ID="TABLE_PICTURES" WIDTH=100% STYLE="BACKGROUND-IMAGE: url(https://www.topproduceronline.com/LeadToolkit/BANNER000A.jpg); font-size: xx-small; font-family: sans-serif; COLOR: #000000;">
<TR WIDTH=100%>
<TD><IMG ID="AGENT1_PICTURE" SRC="http://tponline.realty-wire.com/Users/2310A145-F224-4550-9518-0042747E0B09/{0BC3B853-C9A5-4769-A22D-B62BCDEF955B}/{38e183c5-4480-425c-be16-ab803d4bbf49}.jpg" HEIGHT="100px"></TD>
<TD ALIGN=LEFT VALIGN=TOP WIDTH=90%>
<STRONG>Mark L Allen, CCIM</STRONG><BR><BR>
Phone: 407-898-8080<BR>
Email: <A HREF="mailto:mark-allen@cfl.rr.com">mark-allen@cfl.rr.com</A>
</TD>
<TD ALIGN=RIGHT VALIGN=TOP ROWSPAN=2><IMG ID="COMPANY_LOGO" SRC="http://tponline.realty-wire.com/Users/2310A145-F224-4550-9518-0042747E0B09/{0BC3B853-C9A5-4769-A22D-B62BCDEF955B}/{96febb18-7298-4620-adf2-6d2e9632fc77}.jpg" HEIGHT="100px"></TD>
</TR>
</TABLE>
<HR>
<FORM ID="frmMain" ACTION="https://www.topproduceronline.com/LeadToolkit.asp" METHOD=post>
<DIV NAME="CONTACT_INFO" ALIGN=center STYLE="WIDTH: 800px">
<CENTER>
<STRONG>
Please enter your information in the following fields and click the submit button.
</STRONG>
</CENTER>
<BR>
<TABLE WIDTH="100%" COLS=5 CELLPADDING=2 CELLSPACING=0 BORDER=0 STYLE="font-SIZE: xx-small; font-family: sans-serif; COLOR: #000000;">
<TR>
<TD STYLE="WIDTH: 20%" ALIGN=right><FONT COLOR=RED>*</FONT> First name:</TD>
<TD STYLE="WIDTH: 15%" ALIGN=left>
<INPUT MAXLENGTH=21 ID=FIRST_NAME NAME=FIRST_NAME STYLE="WIDTH: 95%; HEIGHT: 22px" SIZE=8 VALUE="<% writeSafeValue( "FIRST_NAME" ); %>">
</TD>
<TD STYLE="WIDTH: 10%" ALIGN=right><FONT COLOR=RED>*</FONT> Last name:</TD>
<TD STYLE="WIDTH: 15%" ALIGN=left>
<INPUT STYLE="WIDTH: 95%;HEIGHT: 22px" MAXLENGTH=26 SIZE=4 ID=LAST_NAME NAME=LAST_NAME VALUE="<% writeSafeValue( "LAST_NAME" ); %>">
</TD>
<TD STYLE="WIDTH: 10%"> </TD>
</TR>
<TR>
<TD STYLE="WIDTH: 20%" ALIGN=right><FONT COLOR=RED>*</FONT> Email:</TD>
<TD STYLE="WIDTH: 15%" ALIGN=left>
<INPUT STYLE="WIDTH: 95%; HEIGHT: 22px" MAXLENGTH=80 SIZE=7 ID=EMAIL NAME=EMAIL VALUE="<% writeSafeValue( "EMAIL" ); %>">
</TD>
<TD STYLE="WIDTH: 10%" ALIGN=right><FONT COLOR=RED>*</FONT> Phone:</TD>
<TD STYLE="WIDTH: 15%" ALIGN=left>
<TABLE STYLE="WIDTH: 100%;" BORDER=0 CELLPADDING=0 CELLSPACING=0>
<TR>
<TD>
(<INPUT TYPE=TEXT MAXLENGTH=3 ID=PHONE_AREA_CODE NAME=PHONE_AREA_CODE STYLE="width: 20%" onKeyUp="moveToNextField( 'PHONE_AREA_CODE' ); enableBestTime();" onKeyPress="allowKeys( this, '1234567890' );" onBeforePaste="validateInput( this, '1234567890' );" onPaste="enableBestTime();" VALUE="<% writeSafeValue( "PHONE_AREA_CODE" ); %>">) -
<INPUT TYPE=TEXT MAXLENGTH=3 ID=PHONE_LOCAL_CODE NAME=PHONE_LOCAL_CODE STYLE="width: 20%" onKeyUp="moveToNextField( 'PHONE_LOCAL_CODE' ); enableBestTime();" onKeyPress="allowKeys( this, '1234567890' );" onBeforePaste="validateInput( this, '1234567890' );" onPaste="enableBestTime();" VALUE="<% writeSafeValue( "PHONE_LOCAL_CODE" ); %>"> -
<INPUT TYPE=TEXT MAXLENGTH=4 ID=PHONE_NUMBER NAME=PHONE_NUMBER STYLE="width: 36%" onKeyUp="enableBestTime();" onKeyPress="allowKeys( this, '1234567890' );" onBeforePaste="validateInput( this, '1234567890' );" onPaste="enableBestTime();" VALUE="<% writeSafeValue( "PHONE_NUMBER" ); %>">
</TD>
</TR>
</TABLE>
</TD>
<TD STYLE="WIDTH: 10%"> </TD>
</TR>
<TR>
<TD STYLE="WIDTH: 20%" ALIGN=right>House #:</TD>
<TD STYLE="WIDTH: 15%" ALIGN=left>
<INPUT STYLE="WIDTH: 95%; HEIGHT: 22px" MAXLENGTH=16 SIZE=5 ID=HOUSE_NO NAME=HOUSE_NO VALUE="<% writeSafeValue( "HOUSE_NO" ); %>">
</TD>
<TD STYLE="WIDTH: 10%" ALIGN=right>Street:</TD>
<TD STYLE="WIDTH: 15%" ALIGN=left>
<INPUT STYLE="WIDTH: 95%; HEIGHT: 22px" MAXLENGTH=31 SIZE=8 ID=STREET_NAME NAME=STREET_NAME VALUE="<% writeSafeValue( "STREET_NAME" ); %>">
</TD>
<TD STYLE="WIDTH: 10%"> </TD>
</TR>
<TR>
<TD STYLE="WIDTH: 20%" ALIGN=right>Suite #:</TD>
<TD STYLE="WIDTH: 15%" ALIGN=left>
<INPUT STYLE="WIDTH: 95%; HEIGHT: 22px" MAXLENGTH=11 SIZE=2 ID=SUITE_NO NAME=SUITE_NO VALUE="<% writeSafeValue( "SUITE_NO" ); %>">
</TD>
<TD STYLE="WIDTH: 10%" ALIGN=right>City:</TD>
<TD STYLE="WIDTH: 15%" ALIGN=left>
<INPUT STYLE="WIDTH: 95%; HEIGHT: 22px" MAXLENGTH=26 SIZE=4 ID=CITY NAME=CITY VALUE="<% writeSafeValue( "CITY" ); %>">
</TD>
<TD STYLE="WIDTH: 10%"> </TD>
</TR>
<TR>
<TD STYLE="WIDTH: 20%" ALIGN=right>State:</TD>
<TD STYLE="WIDTH: 15%" ALIGN=left>
<INPUT STYLE="WIDTH: 95%; HEIGHT: 22px" MAXLENGTH=26 SIZE=1 ID=STATE NAME=STATE VALUE="<% writeSafeValue( "STATE" ); %>">
</TD>
<TD STYLE="WIDTH: 10%" ALIGN=right>Zip:</TD>
<TD STYLE="WIDTH: 15%" ALIGN=left>
<INPUT STYLE="WIDTH: 95%; HEIGHT: 22px" MAXLENGTH=16 SIZE=2 ID=ZIP NAME=ZIP VALUE="<% writeSafeValue( "ZIP" ); %>">
</TD>
</TR>
<TR>
<TD STYLE="WIDTH: 20%" ALIGN=right>Best time to reach me:</TD>
<TD STYLE="WIDTH: 15%" ALIGN=left>
<SELECT STYLE="WIDTH: 95%" ID=BEST_TIME NAME=BEST_TIME DISABLED>
<OPTION VALUE="Anytime"<% if( Request.QueryString( "BEST_TIME" ) == "Anytime" || Request.QueryString( "" ).Count == 0 ) Response.Write( " SELECTED" ); %>>Anytime
<OPTION VALUE="Morning"<% if( Request.QueryString( "BEST_TIME" ) == "Morning" ) Response.Write( " SELECTED" ); %>>Morning
<OPTION VALUE="Afternoon"<% if( Request.QueryString( "BEST_TIME" ) == "Afternoon" ) Response.Write( " SELECTED" ); %>>Afternoon
<OPTION VALUE="Evening"<% if( Request.QueryString( "BEST_TIME" ) == "Evening" ) Response.Write( " SELECTED" ); %>>Evening</OPTION>
</SELECT>
</TD>
<TD COLSPAN=3 STYLE="WIDTH: 35%"> </TD>
</TR>
<TR STYLE="HEIGHT: 5px"><TD></TD></TR>
<TR>
<TD COLSPAN=5 STYLE="WIDTH: 25%" ALIGN=CENTER>
I am: 
<INPUT ID="STATUS_BUYER" TYPE=RADIO NAME="STATUS" onClick="enableSection( 'Buyer' );" VALUE="Buy-New-Home"<% if( Request.QueryString( "STATUS" ) == "Buy-New-Home" || Request.QueryString( "STATUS" ).Count == 0 ) Response.Write( " CHECKED" ); %>>Buying</INPUT>
<INPUT ID="STATUS_SELLER" TYPE=RADIO NAME="STATUS" onClick="enableSection( 'Seller' );" VALUE="Sell-Home"<% if( Request.QueryString( "STATUS" ) == "Sell-Home" ) Response.Write( " CHECKED" ); %>>Selling</INPUT>
<INPUT ID="STATUS_BOTH" TYPE=RADIO NAME="STATUS" onClick="enableSection( 'Both' );" VALUE="Buy-Resale-Home"<% if( Request.QueryString( "STATUS" ) == "Buy-Resale-Home" ) Response.Write( " CHECKED" ); %>>Both</INPUT>
</TD>
</TR>
</TABLE>
<BR>
<TABLE WIDTH="100%" BORDER=0 CELLPADDING=2 CELLSPACING=0 COLS=5 STYLE="font-SIZE: xx-small; font-family: sans-serif; COLOR: #000000;">
<TR>
<TD STYLE="WIDTH: 20%"></TD>
<TD STYLE="WIDTH: 25%"></TD>
<TD STYLE="WIDTH: 5%"></TD>
<TD STYLE="WIDTH: 20%"></TD>
<TD STYLE="WIDTH: 25%"></TD>
<TD STYLE="WIDTH: 5%"></TD>
</TR>
<TR>
<TD COLSPAN=3 ID=TXT_BUYER WIDTH="50%" HEIGHT=20 BGCOLOR=#FFFFFF>
<CENTER><STRONG STYLE="font-SIZE: xx-small">Buying property features</STRONG></CENTER>
<HR>
</TD>
<TD COLSPAN=3 ID=TXT_SELLER WIDTH="50%" HEIGHT=20 BGCOLOR=#FFFFFF>
<CENTER><STRONG STYLE="font-SIZE: xx-small">My property features</STRONG></CENTER>
<HR>
</TD>
</TR>
<TR>
<TD STYLE="WIDTH: 20%" ID=TXT_BUYER_MIN_PRICE ALIGN=right>Minimum price: </TD>
<TD STYLE="WIDTH: 25%" ALIGN=left>
<SELECT ID=BUYER_MIN_PRICE NAME=BUYER_MIN_PRICE STYLE="WIDTH:80%">
<OPTION VALUE="$0"<% if( Request.QueryString( "BUYER_MIN_PRICE" ) == "$0" || Request.QueryString( "" ).Count == 0 ) Response.Write( " SELECTED" ); %>>$0
<OPTION VALUE="$25,000"<% if( Request.QueryString( "BUYER_MIN_PRICE" ) == "$25,000" ) Response.Write( " SELECTED" ); %>>$25,000
<OPTION VALUE="$50,000"<% if( Request.QueryString( "BUYER_MIN_PRICE" ) == "$50,000" ) Response.Write( " SELECTED" ); %>>$50,000
<OPTION VALUE="$75,000"<% if( Request.QueryString( "BUYER_MIN_PRICE" ) == "$75,000" ) Response.Write( " SELECTED" ); %>>$75,000
<OPTION VALUE="$100,000"<% if( Request.QueryString( "BUYER_MIN_PRICE" ) == "$100,000" ) Response.Write( " SELECTED" ); %>>$100,000
<OPTION VALUE="$125,000"<% if( Request.QueryString( "BUYER_MIN_PRICE" ) == "$125,000" ) Response.Write( " SELECTED" ); %>>$125,000
<OPTION VALUE="$150,000"<% if( Request.QueryString( "BUYER_MIN_PRICE" ) == "$150,000" ) Response.Write( " SELECTED" ); %>>$150,000
<OPTION VALUE="$175,000"<% if( Request.QueryString( "BUYER_MIN_PRICE" ) == "$175,000" ) Response.Write( " SELECTED" ); %>>$175,000
<OPTION VALUE="$200,000"<% if( Request.QueryString( "BUYER_MIN_PRICE" ) == "$200,000" ) Response.Write( " SELECTED" ); %>>$200,000
<OPTION VALUE="$225,000"<% if( Request.QueryString( "BUYER_MIN_PRICE" ) == "$225,000" ) Response.Write( " SELECTED" ); %>>$225,000
<OPTION VALUE="$250,000"<% if( Request.QueryString( "BUYER_MIN_PRICE" ) == "$250,000" ) Response.Write( " SELECTED" ); %>>$250,000
<OPTION VALUE="$275,000"<% if( Request.QueryString( "BUYER_MIN_PRICE" ) == "$275,000" ) Response.Write( " SELECTED" ); %>>$275,000
<OPTION VALUE="$300,000"<% if( Request.QueryString( "BUYER_MIN_PRICE" ) == "$300,000" ) Response.Write( " SELECTED" ); %>>$300,000
<OPTION VALUE="$325,000"<% if( Request.QueryString( "BUYER_MIN_PRICE" ) == "$325,000" ) Response.Write( " SELECTED" ); %>>$325,000
<OPTION VALUE="$350,000"<% if( Request.QueryString( "BUYER_MIN_PRICE" ) == "$350,000" ) Response.Write( " SELECTED" ); %>>$350,000
<OPTION VALUE="$375,000"<% if( Request.QueryString( "BUYER_MIN_PRICE" ) == "$375,000" ) Response.Write( " SELECTED" ); %>>$375,000
<OPTION VALUE="$400,000"<% if( Request.QueryString( "BUYER_MIN_PRICE" ) == "$400,000" ) Response.Write( " SELECTED" ); %>>$400,000
<OPTION VALUE="$425,000"<% if( Request.QueryString( "BUYER_MIN_PRICE" ) == "$425,000" ) Response.Write( " SELECTED" ); %>>$425,000
<OPTION VALUE="$450,000"<% if( Request.QueryString( "BUYER_MIN_PRICE" ) == "$450,000" ) Response.Write( " SELECTED" ); %>>$450,000
<OPTION VALUE="$475,000"<% if( Request.QueryString( "BUYER_MIN_PRICE" ) == "$475,000" ) Response.Write( " SELECTED" ); %>>$475,000
<OPTION VALUE="$500,000"<% if( Request.QueryString( "BUYER_MIN_PRICE" ) == "$500,000" ) Response.Write( " SELECTED" ); %>>$500,000
<OPTION VALUE="$525,000"<% if( Request.QueryString( "BUYER_MIN_PRICE" ) == "$525,000" ) Response.Write( " SELECTED" ); %>>$525,000
<OPTION VALUE="$550,000"<% if( Request.QueryString( "BUYER_MIN_PRICE" ) == "$550,000" ) Response.Write( " SELECTED" ); %>>$550,000
<OPTION VALUE="$575,000"<% if( Request.QueryString( "BUYER_MIN_PRICE" ) == "$575,000" ) Response.Write( " SELECTED" ); %>>$575,000
<OPTION VALUE="$600,000"<% if( Request.QueryString( "BUYER_MIN_PRICE" ) == "$600,000" ) Response.Write( " SELECTED" ); %>>$600,000
<OPTION VALUE="$625,000"<% if( Request.QueryString( "BUYER_MIN_PRICE" ) == "$625,000" ) Response.Write( " SELECTED" ); %>>$625,000
<OPTION VALUE="$650,000"<% if( Request.QueryString( "BUYER_MIN_PRICE" ) == "$650,000" ) Response.Write( " SELECTED" ); %>>$650,000
<OPTION VALUE="$675,000"<% if( Request.QueryString( "BUYER_MIN_PRICE" ) == "$675,000" ) Response.Write( " SELECTED" ); %>>$675,000
<OPTION VALUE="$700,000"<% if( Request.QueryString( "BUYER_MIN_PRICE" ) == "$700,000" ) Response.Write( " SELECTED" ); %>>$700,000
<OPTION VALUE="$725,000"<% if( Request.QueryString( "BUYER_MIN_PRICE" ) == "$725,000" ) Response.Write( " SELECTED" ); %>>$725,000
<OPTION VALUE="$750,000"<% if( Request.QueryString( "BUYER_MIN_PRICE" ) == "$750,000" ) Response.Write( " SELECTED" ); %>>$750,000
<OPTION VALUE="$775,000"<% if( Request.QueryString( "BUYER_MIN_PRICE" ) == "$775,000" ) Response.Write( " SELECTED" ); %>>$775,000
<OPTION VALUE="$800,000"<% if( Request.QueryString( "BUYER_MIN_PRICE" ) == "$800,000" ) Response.Write( " SELECTED" ); %>>$800,000
<OPTION VALUE="$825,000"<% if( Request.QueryString( "BUYER_MIN_PRICE" ) == "$825,000" ) Response.Write( " SELECTED" ); %>>$825,000
<OPTION VALUE="$850,000"<% if( Request.QueryString( "BUYER_MIN_PRICE" ) == "$850,000" ) Response.Write( " SELECTED" ); %>>$850,000
<OPTION VALUE="$875,000"<% if( Request.QueryString( "BUYER_MIN_PRICE" ) == "$875,000" ) Response.Write( " SELECTED" ); %>>$875,000
<OPTION VALUE="$900,000"<% if( Request.QueryString( "BUYER_MIN_PRICE" ) == "$900,000" ) Response.Write( " SELECTED" ); %>>$900,000
<OPTION VALUE="$925,000"<% if( Request.QueryString( "BUYER_MIN_PRICE" ) == "$925,000" ) Response.Write( " SELECTED" ); %>>$925,000
<OPTION VALUE="$950,000"<% if( Request.QueryString( "BUYER_MIN_PRICE" ) == "$950,000" ) Response.Write( " SELECTED" ); %>>$950,000
<OPTION VALUE="$975,000"<% if( Request.QueryString( "BUYER_MIN_PRICE" ) == "$975,000" ) Response.Write( " SELECTED" ); %>>$975,000
<OPTION VALUE="$1,000,000"<% if( Request.QueryString( "BUYER_MIN_PRICE" ) == "$1,000,000" ) Response.Write( " SELECTED" ); %>>$1,000,000
</SELECT>
</TD>
<TD STYLE="WIDTH: 5%"></TD>
<TD STYLE="WIDTH: 20%; BORDER-LEFT: 1px solid lightgray;" ID=TXT_SELLER_MIN_PRICE ALIGN=right>Minimum price: </TD>
<TD STYLE="WIDTH: 25%" ALIGN=left>
<INPUT TYPE=TEXT ID=SELLER_MIN_PRICE NAME=SELLER_MIN_PRICE MAXLENGTH=8 STYLE="WIDTH:80%" onKeyPress="allowKeys( this, '1234567890.' );" onBeforePaste="validateInput( this, '1234567890.' );" VALUE="<% writeSafeValue( "SELLER_MIN_PRICE" ); %>">
</TD>
<TD STYLE="WIDTH: 5%"></TD>
</TR>
<TR>
<TD STYLE="WIDTH: 20%" ID=TXT_BUYER_MAX_PRICE ALIGN=right>Maximum price: </TD>
<TD STYLE="WIDTH: 25%" ALIGN=left>
<SELECT ID=BUYER_MAX_PRICE NAME=BUYER_MAX_PRICE STYLE="WIDTH:80%">
<OPTION VALUE="$25,000"<% if( Request.QueryString( "BUYER_MAX_PRICE" ) == "$25,000" ) Response.Write( " SELECTED" ); %>>$25,000
<OPTION VALUE="$50,000"<% if( Request.QueryString( "BUYER_MAX_PRICE" ) == "$50,000" ) Response.Write( " SELECTED" ); %>>$50,000
<OPTION VALUE="$75,000"<% if( Request.QueryString( "BUYER_MAX_PRICE" ) == "$75,000" ) Response.Write( " SELECTED" ); %>>$75,000
<OPTION VALUE="$100,000"<% if( Request.QueryString( "BUYER_MAX_PRICE" ) == "$100,000" ) Response.Write( " SELECTED" ); %>>$100,000
<OPTION VALUE="$125,000"<% if( Request.QueryString( "BUYER_MAX_PRICE" ) == "$125,000" ) Response.Write( " SELECTED" ); %>>$125,000
<OPTION VALUE="$150,000"<% if( Request.QueryString( "BUYER_MAX_PRICE" ) == "$150,000" ) Response.Write( " SELECTED" ); %>>$150,000
<OPTION VALUE="$175,000"<% if( Request.QueryString( "BUYER_MAX_PRICE" ) == "$175,000" ) Response.Write( " SELECTED" ); %>>$175,000
<OPTION VALUE="$200,000"<% if( Request.QueryString( "BUYER_MAX_PRICE" ) == "$200,000" ) Response.Write( " SELECTED" ); %>>$200,000
<OPTION VALUE="$225,000"<% if( Request.QueryString( "BUYER_MAX_PRICE" ) == "$225,000" ) Response.Write( " SELECTED" ); %>>$225,000
<OPTION VALUE="$250,000"<% if( Request.QueryString( "BUYER_MAX_PRICE" ) == "$250,000" ) Response.Write( " SELECTED" ); %>>$250,000
<OPTION VALUE="$275,000"<% if( Request.QueryString( "BUYER_MAX_PRICE" ) == "$275,000" ) Response.Write( " SELECTED" ); %>>$275,000
<OPTION VALUE="$300,000"<% if( Request.QueryString( "BUYER_MAX_PRICE" ) == "$300,000" ) Response.Write( " SELECTED" ); %>>$300,000
<OPTION VALUE="$325,000"<% if( Request.QueryString( "BUYER_MAX_PRICE" ) == "$325,000" ) Response.Write( " SELECTED" ); %>>$325,000
<OPTION VALUE="$350,000"<% if( Request.QueryString( "BUYER_MAX_PRICE" ) == "$350,000" ) Response.Write( " SELECTED" ); %>>$350,000
<OPTION VALUE="$375,000"<% if( Request.QueryString( "BUYER_MAX_PRICE" ) == "$375,000" ) Response.Write( " SELECTED" ); %>>$375,000
<OPTION VALUE="$400,000"<% if( Request.QueryString( "BUYER_MAX_PRICE" ) == "$400,000" ) Response.Write( " SELECTED" ); %>>$400,000
<OPTION VALUE="$425,000"<% if( Request.QueryString( "BUYER_MAX_PRICE" ) == "$425,000" ) Response.Write( " SELECTED" ); %>>$425,000
<OPTION VALUE="$450,000"<% if( Request.QueryString( "BUYER_MAX_PRICE" ) == "$450,000" ) Response.Write( " SELECTED" ); %>>$450,000
<OPTION VALUE="$475,000"<% if( Request.QueryString( "BUYER_MAX_PRICE" ) == "$475,000" ) Response.Write( " SELECTED" ); %>>$475,000
<OPTION VALUE="$500,000"<% if( Request.QueryString( "BUYER_MAX_PRICE" ) == "$500,000" ) Response.Write( " SELECTED" ); %>>$500,000
<OPTION VALUE="$525,000"<% if( Request.QueryString( "BUYER_MAX_PRICE" ) == "$525,000" ) Response.Write( " SELECTED" ); %>>$525,000
<OPTION VALUE="$550,000"<% if( Request.QueryString( "BUYER_MAX_PRICE" ) == "$550,000" ) Response.Write( " SELECTED" ); %>>$550,000
<OPTION VALUE="$575,000"<% if( Request.QueryString( "BUYER_MAX_PRICE" ) == "$575,000" ) Response.Write( " SELECTED" ); %>>$575,000
<OPTION VALUE="$600,000"<% if( Request.QueryString( "BUYER_MAX_PRICE" ) == "$600,000" ) Response.Write( " SELECTED" ); %>>$600,000
<OPTION VALUE="$625,000"<% if( Request.QueryString( "BUYER_MAX_PRICE" ) == "$625,000" ) Response.Write( " SELECTED" ); %>>$625,000
<OPTION VALUE="$650,000"<% if( Request.QueryString( "BUYER_MAX_PRICE" ) == "$650,000" ) Response.Write( " SELECTED" ); %>>$650,000
<OPTION VALUE="$675,000"<% if( Request.QueryString( "BUYER_MAX_PRICE" ) == "$675,000" ) Response.Write( " SELECTED" ); %>>$675,000
<OPTION VALUE="$700,000"<% if( Request.QueryString( "BUYER_MAX_PRICE" ) == "$700,000" ) Response.Write( " SELECTED" ); %>>$700,000
<OPTION VALUE="$725,000"<% if( Request.QueryString( "BUYER_MAX_PRICE" ) == "$725,000" ) Response.Write( " SELECTED" ); %>>$725,000
<OPTION VALUE="$750,000"<% if( Request.QueryString( "BUYER_MAX_PRICE" ) == "$750,000" ) Response.Write( " SELECTED" ); %>>$750,000
<OPTION VALUE="$775,000"<% if( Request.QueryString( "BUYER_MAX_PRICE" ) == "$775,000" ) Response.Write( " SELECTED" ); %>>$775,000
<OPTION VALUE="$800,000"<% if( Request.QueryString( "BUYER_MAX_PRICE" ) == "$800,000" ) Response.Write( " SELECTED" ); %>>$800,000
<OPTION VALUE="$825,000"<% if( Request.QueryString( "BUYER_MAX_PRICE" ) == "$825,000" ) Response.Write( " SELECTED" ); %>>$825,000
<OPTION VALUE="$850,000"<% if( Request.QueryString( "BUYER_MAX_PRICE" ) == "$850,000" ) Response.Write( " SELECTED" ); %>>$850,000
<OPTION VALUE="$875,000"<% if( Request.QueryString( "BUYER_MAX_PRICE" ) == "$875,000" ) Response.Write( " SELECTED" ); %>>$875,000
<OPTION VALUE="$900,000"<% if( Request.QueryString( "BUYER_MAX_PRICE" ) == "$900,000" ) Response.Write( " SELECTED" ); %>>$900,000
<OPTION VALUE="$925,000"<% if( Request.QueryString( "BUYER_MAX_PRICE" ) == "$925,000" ) Response.Write( " SELECTED" ); %>>$925,000
<OPTION VALUE="$950,000"<% if( Request.QueryString( "BUYER_MAX_PRICE" ) == "$950,000" ) Response.Write( " SELECTED" ); %>>$950,000
<OPTION VALUE="$975,000"<% if( Request.QueryString( "BUYER_MAX_PRICE" ) == "$975,000" ) Response.Write( " SELECTED" ); %>>$975,000
<OPTION VALUE="$1,000,000"<% if( Request.QueryString( "BUYER_MAX_PRICE" ) == "$1,000,000" ) Response.Write( " SELECTED" ); %>>$1,000,000
<OPTION VALUE="no maximum"<% if( Request.QueryString( "BUYER_MAX_PRICE" ) == "no maximum" || Request.QueryString( "" ).Count == 0 ) Response.Write( " SELECTED" ); %>>no maximum
</SELECT>
</TD>
<TD STYLE="WIDTH: 5%"></TD>
<TD STYLE="WIDTH: 20%; BORDER-LEFT: 1px solid lightgray;" ID=TXT_SELLER_MAX_PRICE ALIGN=right>Maximum price: </TD>
<TD STYLE="WIDTH: 25%" ALIGN=left>
<INPUT TYPE=TEXT ID=SELLER_MAX_PRICE NAME=SELLER_MAX_PRICE MAXLENGTH=8 STYLE="WIDTH:80%" onKeyPress="allowKeys( this, '1234567890.' );" onBeforePaste="validateInput( this, '1234567890.' );" VALUE="<% writeSafeValue( "SELLER_MAX_PRICE" ); %>">
</TD>
<TD STYLE="WIDTH: 5%"></TD>
</TR>
<TR>
<TD STYLE="WIDTH: 20%" ID=TXT_BUYER_SQUAREFEET ALIGN=right>Square feet: </TD>
<TD STYLE="WIDTH: 25%" ALIGN=left>
<SELECT ID="BUYER_SQUAREFEET" NAME="BUYER_SQUAREFEET" STYLE="WIDTH: 80%">
<OPTION VALUE="0-999"<% if( Request.QueryString( "BUYER_SQUAREFEET" ) == "0-999" || Request.QueryString( "" ).Count == 0 ) Response.Write( " SELECTED" ); %>>0-999
<OPTION VALUE="1000-1499"<% if( Request.QueryString( "BUYER_SQUAREFEET" ) == "1000-1499" ) Response.Write( " SELECTED" ); %>>1000-1499
<OPTION VALUE="1500-1999"<% if( Request.QueryString( "BUYER_SQUAREFEET" ) == "1500-1999" ) Response.Write( " SELECTED" ); %>>1500-1999
<OPTION VALUE="2000-2499"<% if( Request.QueryString( "BUYER_SQUAREFEET" ) == "2000-2499" ) Response.Write( " SELECTED" ); %>>2000-2499
<OPTION VALUE="2500-2999"<% if( Request.QueryString( "BUYER_SQUAREFEET" ) == "2500-2999" ) Response.Write( " SELECTED" ); %>>2500-2999
<OPTION VALUE="3000-3499"<% if( Request.QueryString( "BUYER_SQUAREFEET" ) == "3000-3499" ) Response.Write( " SELECTED" ); %>>3000-3499
<OPTION VALUE="3500-3999"<% if( Request.QueryString( "BUYER_SQUAREFEET" ) == "3500-3999" ) Response.Write( " SELECTED" ); %>>3500-3999
<OPTION VALUE="4000+"<% if( Request.QueryString( "BUYER_SQUAREFEET" ) == "4000+" ) Response.Write( " SELECTED" ); %>>4000+
</SELECT>
</TD>
<TD STYLE="WIDTH: 5%"></TD>
<TD STYLE="WIDTH: 20%; BORDER-LEFT: 1px solid lightgray;" ID=TXT_SELLER_SQUAREFEET ALIGN=right>Square feet: </TD>
<TD STYLE="WIDTH: 25%" ALIGN=left>
<INPUT TYPE=TEXT ID="SELLER_SQUAREFEET" NAME="SELLER_SQUAREFEET" MAXLENGTH=16 STYLE="WIDTH: 80%" onKeyPress="allowKeys( this, '1234567890+-,.' );" onBeforePaste="validateInput( this, '1234567890+-,.' );" VALUE="<% writeSafeValue( "SELLER_SQUAREFEET" ); %>">
</TD>
<TD STYLE="WIDTH: 5%"></TD>
</TR>
<TR>
<TD STYLE="WIDTH: 20%" ID=TXT_BUYER_BEDROOMS ALIGN=right>Bedrooms: </TD>
<TD STYLE="WIDTH: 25%" ALIGN=left>
<SELECT ID="BUYER_BEDROOMS" NAME="BUYER_BEDROOMS" STYLE="WIDTH: 80%">
<OPTION VALUE="1"<% if( Request.QueryString( "BUYER_BEDROOMS" ) == "1" || Request.QueryString( "" ).Count == 0 ) Response.Write( " SELECTED" ); %>>1
<OPTION VALUE="2"<% if( Request.QueryString( "BUYER_BEDROOMS" ) == "2" ) Response.Write( " SELECTED" ); %>>2
<OPTION VALUE="3"<% if( Request.QueryString( "BUYER_BEDROOMS" ) == "3" ) Response.Write( " SELECTED" ); %>>3
<OPTION VALUE="4"<% if( Request.QueryString( "BUYER_BEDROOMS" ) == "4" ) Response.Write( " SELECTED" ); %>>4
<OPTION VALUE="5+"<% if( Request.QueryString( "BUYER_BEDROOMS" ) == "5+" ) Response.Write( " SELECTED" ); %>>5+
</SELECT>
</TD>
<TD STYLE="WIDTH: 5%"></TD>
<TD STYLE="WIDTH: 20%; BORDER-LEFT: 1px solid lightgray;" ID=TXT_SELLER_BEDROOMS ALIGN=right>Bedrooms: </TD>
<TD STYLE="WIDTH: 25%" ALIGN=left>
<INPUT TYPE=TEXT ID="SELLER_BEDROOMS" NAME="SELLER_BEDROOMS" MAXLENGTH=16 STYLE="WIDTH: 80%" onKeyPress="allowKeys( this, '1234567890+-' );" onBeforePaste="validateInput( this, '1234567890+-' );" VALUE="<% writeSafeValue( "SELLER_BEDROOMS" ); %>">
</TD>
<TD STYLE="WIDTH: 5%"></TD>
</TR>
<TR>
<TD STYLE="WIDTH: 20%" ID=TXT_BUYER_BATHROOMS ALIGN=right>Bathrooms: </TD>
<TD STYLE="WIDTH: 25%" ALIGN=left>
<SELECT ID="BUYER_BATHROOMS" NAME="BUYER_BATHROOMS" STYLE="WIDTH: 80%">
<OPTION VALUE="1"<% if( Request.QueryString( "BUYER_BATHROOMS" ) == "1" || Request.QueryString( "" ).Count == 0 ) Response.Write( " SELECTED" ); %>>1
<OPTION VALUE="2"<% if( Request.QueryString( "BUYER_BATHROOMS" ) == "2" ) Response.Write( " SELECTED" ); %>>2
<OPTION VALUE="3"<% if( Request.QueryString( "BUYER_BATHROOMS" ) == "3" ) Response.Write( " SELECTED" ); %>>3
<OPTION VALUE="4+"<% if( Request.QueryString( "BUYER_BATHROOMS" ) == "4+" ) Response.Write( " SELECTED" ); %>>4+
</SELECT>
</TD>
<TD STYLE="WIDTH: 5%"></TD>
<TD STYLE="WIDTH: 20%; BORDER-LEFT: 1px solid lightgray;" ID=TXT_SELLER_BATHROOMS ALIGN=right>Bathrooms: </TD>
<TD STYLE="WIDTH: 25%" ALIGN=left>
<INPUT TYPE=TEXT ID="SELLER_BATHROOMS" NAME="SELLER_BATHROOMS" MAXLENGTH=16 STYLE="WIDTH: 80%" onKeyPress="allowKeys( this, '1234567890+-.' );" onBeforePaste="validateInput( this, '1234567890+-.' );" VALUE="<% writeSafeValue( "SELLER_BATHROOMS" ); %>">
</TD>
<TD STYLE="WIDTH: 5%"></TD>
</TR>
<TR>
<TD STYLE="WIDTH: 20%" ID=TXT_BUYER_AGE ALIGN=right>Age of house: </TD>
<TD STYLE="WIDTH: 25%" ALIGN=left>
<SELECT ID="BUYER_AGE" NAME="BUYER_AGE" STYLE="WIDTH: 80%">
<OPTION VALUE="0-9"<% if( Request.QueryString( "BUYER_AGE" ) == "0-9" || Request.QueryString( "" ).Count == 0 ) Response.Write( " SELECTED" ); %>>0-9
<OPTION VALUE="10-19"<% if( Request.QueryString( "BUYER_AGE" ) == "10-19" ) Response.Write( " SELECTED" ); %>>10-19
<OPTION VALUE="20-29"<% if( Request.QueryString( "BUYER_AGE" ) == "20-29" ) Response.Write( " SELECTED" ); %>>20-29
<OPTION VALUE="30-39"<% if( Request.QueryString( "BUYER_AGE" ) == "30-39" ) Response.Write( " SELECTED" ); %>>30-39
<OPTION VALUE="40+"<% if( Request.QueryString( "BUYER_AGE" ) == "40+" ) Response.Write( " SELECTED" ); %>>40+
</SELECT>
</TD>
<TD STYLE="WIDTH: 5%"></TD>
<TD STYLE="WIDTH: 20%; BORDER-LEFT: 1px solid lightgray;" ID=TXT_SELLER_AGE ALIGN=right>Age of house: </TD>
<TD STYLE="WIDTH: 25%" ALIGN=left>
<INPUT TYPE=TEXT ID="SELLER_AGE" NAME="SELLER_AGE" MAXLENGTH=3 STYLE="WIDTH: 80%" onKeyPress="allowKeys( this, '1234567890+-.' );" onBeforePaste="validateInput( this, '1234567890+-.' );" VALUE="<% writeSafeValue( "SELLER_AGE" ); %>">
</TD>
<TD STYLE="WIDTH: 5%"></TD>
</TR>
<TR>
<TD STYLE="WIDTH: 20%"></TD>
<TD STYLE="WIDTH: 25%"></TD>
<TD STYLE="WIDTH: 5%"></TD>
<TD STYLE="WIDTH: 20%; BORDER-LEFT: 1px solid lightgray;"> </TD>
<TD STYLE="WIDTH: 25%"></TD>
<TD STYLE="WIDTH: 5%"></TD>
</TR>
<TR>
<TD COLSPAN=3 ID=TXT_BUYER_LOCATION>
<STRONG>Location of house:</STRONG>
</TD>
<TD COLSPAN=3 ID=TXT_SELLER_LOCATION STYLE="BORDER-LEFT: 1px solid lightgray;">
<STRONG>Location of house:</STRONG>
<INPUT TYPE=CHECKBOX ID=SELLER_LOCATION_SAME_ADDRESS NAME=SELLER_LOCATION_SAME_ADDRESS onClick="enableAddressFields(); if( this.checked ) this.value='on'; else this.value='';"<% if( Request.QueryString( "SELLER_LOCATION_SAME_ADDRESS" ) == "on" ) Response.Write( " CHECKED" ); %>>
Same as address above
</TD>
</TR>
<TR>
<TD COLSPAN=3 ID=BUYER_LOCATION>
<TABLE WIDTH=100% BORDER=0 COLS=3 CELLPADDING=2 CELLSPACING=0 STYLE="font-SIZE: xx-small; font-family: sans-serif; COLOR: #000000;">
<TR>
<TD STYLE="WIDTH: 20%" ALIGN=right>City: </TD>
<TD STYLE="WIDTH: 25%" ALIGN=left>
<INPUT TYPE=TEXT ID=BUYER_CITY NAME=BUYER_CITY MAXLENGTH=26 STYLE="WIDTH: 80%" VALUE="<% writeSafeValue( "BUYER_CITY" ); %>">
</TD>
<TD STYLE="WIDTH: 5%"> </TD>
</TR>
<TR>
<TD STYLE="WIDTH: 20%" ALIGN=right>State: </TD>
<TD STYLE="WIDTH: 25%" ALIGN=left>
<INPUT TYPE=TEXT ID=BUYER_STATE NAME=BUYER_STATE MAXLENGTH=26 STYLE="WIDTH: 80%" VALUE="<% writeSafeValue( "BUYER_STATE" ); %>">
</TD>
<TD STYLE="WIDTH: 5%"> </TD>
</TR>
<TR>
<TD STYLE="WIDTH: 20%" ALIGN=right>County: </TD>
<TD STYLE="WIDTH: 25%" ALIGN=left>
<INPUT TYPE=TEXT ID=BUYER_COUNTY NAME=BUYER_COUNTY MAXLENGTH=26 STYLE="WIDTH: 80%" VALUE="<% writeSafeValue( "BUYER_COUNTY" ); %>">
</TD>
<TD STYLE="WIDTH: 5%"> </TD>
</TR>
<TR>
<TD STYLE="WIDTH: 20%" ALIGN=right>Area: </TD>
<TD STYLE="WIDTH: 25%" ALIGN=left>
<INPUT TYPE=TEXT ID=BUYER_AREA NAME=BUYER_AREA MAXLENGTH=31 STYLE="WIDTH: 80%" VALUE="<% writeSafeValue( "BUYER_AREA" ); %>">
</TD>
<TD STYLE="WIDTH: 5%"> </TD>
</TR>
<TR>
<TD STYLE="WIDTH: 20%" ID=TXT_BUYER_FEATURES ALIGN=right VALIGN=top>Features: </TD>
<TD STYLE="WIDTH: 25%" ALIGN=left>
<SELECT MULTIPLE=TRUE SIZE=5 ID=BUYER_FEATURES NAME=BUYER_FEATURES STYLE="WIDTH: 80%">
<OPTION VALUE="COOL_Central Air"<% if( Request.QueryString( "BUYER_FEATURES" ) == "COOL_Central Air" ) Response.Write( " SELECTED" ); %>>Central Air
<OPTION VALUE="HEAT_Gas Heat"<% if( Request.QueryString( "BUYER_FEATURES" ) == "HEAT_Gas Heat" ) Response.Write( " SELECTED" ); %>>Gas Heat
<OPTION VALUE="POOL_Swimming Pool"<% if( Request.QueryString( "BUYER_FEATURES" ) == "POOL_Swimming Pool" ) Response.Write( " SELECTED" ); %>>Swimming Pool
<OPTION VALUE="FEATURE_Spa/Hot Tub"<% if( Request.QueryString( "BUYER_FEATURES" ) == "FEATURE_Spa/Hot Tub" ) Response.Write( " SELECTED" ); %>>Spa/Hot Tub
<OPTION VALUE="HEAT_Fireplace"<% if( Request.QueryString( "BUYER_FEATURES" ) == "HEAT_Fireplace" ) Response.Write( " SELECTED" ); %>>Fireplace
<OPTION VALUE="FLOOR_Hardwood Floors"<% if( Request.QueryString( "BUYER_FEATURES" ) == "FLOOR_Hardwood Floors" ) Response.Write( " SELECTED" ); %>>Hardwood Floors
<OPTION VALUE="OTHER_Tennis Court"<% if( Request.QueryString( "BUYER_FEATURES" ) == "OTHER_Tennis Court" ) Response.Write( " SELECTED" ); %>>Tennis Court
<OPTION VALUE="GARAGE_1 Car Garage"<% if( Request.QueryString( "BUYER_FEATURES" ) == "GARAGE_1 Car Garage" ) Response.Write( " SELECTED" ); %>>1 Car Garage
<OPTION VALUE="OTHER_Eat-in Kitchen"<% if( Request.QueryString( "BUYER_FEATURES" ) == "OTHER_Eat-in Kitchen" ) Response.Write( " SELECTED" ); %>>Eat-in Kitchen
<OPTION VALUE="OTHER_Family Room"<% if( Request.QueryString( "BUYER_FEATURES" ) == "OTHER_Family Room" ) Response.Write( " SELECTED" ); %>>Family Room
<OPTION VALUE="OTHER_Breakfast Area"<% if( Request.QueryString( "BUYER_FEATURES" ) == "OTHER_Breakfast Area" ) Response.Write( " SELECTED" ); %>>Breakfast Area
<OPTION VALUE="GARAGE_2 Car Garage"<% if( Request.QueryString( "BUYER_FEATURES" ) == "GARAGE_2 Car Garage" ) Response.Write( " SELECTED" ); %>>2 Car Garage
<OPTION VALUE="OTHER_Game/Rec. Room"<% if( Request.QueryString( "BUYER_FEATURES" ) == "OTHER_Game/Rec. Room" ) Response.Write( " SELECTED" ); %>>Game/Rec. Room
<OPTION VALUE="GARAGE_RV Parking"<% if( Request.QueryString( "BUYER_FEATURES" ) == "GARAGE_RV Parking" ) Response.Write( " SELECTED" ); %>>RV Parking
<OPTION VALUE="OTHER_Cul-de-sac Location"<% if( Request.QueryString( "BUYER_FEATURES" ) == "OTHER_Cul-de-sac Location" ) Response.Write( " SELECTED" ); %>>Cul-de-sac Location
<OPTION VALUE="GARAGE_3 or More Car Garage"<% if( Request.QueryString( "BUYER_FEATURES" ) == "GARAGE_3 or More Car Garage" ) Response.Write( " SELECTED" ); %>>3 or More Car Garage
<OPTION VALUE="OTHER_Great Room"<% if( Request.QueryString( "BUYER_FEATURES" ) == "OTHER_Great Room" ) Response.Write( " SELECTED" ); %>>Great Room
<OPTION VALUE="OTHER_Den/Study"<% if( Request.QueryString( "BUYER_FEATURES" ) == "OTHER_Den/Study" ) Response.Write( " SELECTED" ); %>>Den/Study
<OPTION VALUE="FEATURE_Waterfront"<% if( Request.QueryString( "BUYER_FEATURES" ) == "FEATURE_Waterfront" ) Response.Write( " SELECTED" ); %>>Waterfront
<OPTION VALUE="FEATURE_Waterview"<% if( Request.QueryString( "BUYER_FEATURES" ) == "FEATURE_Waterview" ) Response.Write( " SELECTED" ); %>>Waterview
</SELECT>
</TD>
<TD STYLE="WIDTH: 5%"> </TD>
</TR>
</TABLE>
</TD>
<TD COLSPAN=3 ID=SELLER_LOCATION STYLE="BORDER-LEFT: 1px solid lightgray;">
<TABLE WIDTH=100% BORDER=0 COLS=4 CELLPADDING=2 CELLSPACING=0 STYLE="font-SIZE: xx-small; font-family: sans-serif; COLOR: #000000;">
<TR>
<TD STYLE="WIDTH: 15%" ID=TXT_SELLER_HOUSE_NO ALIGN=right>House #: </TD>
<TD STYLE="WIDTH: 30%" ALIGN=left>
<INPUT TYPE=TEXT ID=SELLER_HOUSE_NO NAME=SELLER_HOUSE_NO MAXLENGTH=16 STYLE="WIDTH: 100%" VALUE="<% writeSafeValue( "SELLER_HOUSE_NO" ); %>">
</TD>
<TD STYLE="WIDTH: 15%" ID=TXT_SELLER_STREET_NAME ALIGN=right>Street: </TD>
<TD STYLE="WIDTH: 30%" ALIGN=left>
<INPUT TYPE=TEXT ID=SELLER_STREET_NAME NAME=SELLER_STREET_NAME MAXLENGTH=31 STYLE="WIDTH: 100%" VALUE="<% writeSafeValue( "SELLER_STREET_NAME" ); %>">
</TD>
</TR>
<TR>
<TD STYLE="WIDTH: 15%" ID=TXT_SELLER_SUITE_NO ALIGN=right>Suite #: </TD>
<TD STYLE="WIDTH: 35%" ALIGN=left>
<INPUT TYPE=TEXT ID=SELLER_SUITE_NO NAME=SELLER_SUITE_NO MAXLENGTH=11 STYLE="WIDTH: 100%" VALUE="<% writeSafeValue( "SELLER_SUITE_NO" ); %>">
</TD>
<TD STYLE="WIDTH: 15%" ID=TXT_SELLER_CITY ALIGN=right>City: </TD>
<TD STYLE="WIDTH: 35%" ALIGN=left>
<INPUT TYPE=TEXT ID=SELLER_CITY NAME=SELLER_CITY MAXLENGTH=26 STYLE="WIDTH: 100%" VALUE="<% writeSafeValue( "SELLER_CITY" ); %>">
</TD>
</TR>
<TR>
<TD STYLE="WIDTH: 15%" ID=TXT_SELLER_STATE ALIGN=right>State: </TD>
<TD STYLE="WIDTH: 35%" ALIGN=left>
<INPUT TYPE=TEXT ID=SELLER_STATE NAME=SELLER_STATE MAXLENGTH=26 STYLE="WIDTH: 100%" VALUE="<% writeSafeValue( "SELLER_STATE" ); %>">
</TD>
<TD STYLE="WIDTH: 15%" ID=TXT_SELLER_ZIP ALIGN=right>Zip: </TD>
<TD STYLE="WIDTH: 35%" ALIGN=left>
<INPUT TYPE=TEXT ID=SELLER_ZIP NAME=SELLER_ZIP MAXLENGTH=16 STYLE="WIDTH: 100%" VALUE="<% writeSafeValue( "SELLER_ZIP" ); %>">
</TD>
</TR>
<TR>
<TD STYLE="WIDTH: 15%" ID=TXT_SELLER_COUNTY ALIGN=right>County: </TD>
<TD STYLE="WIDTH: 35%" ALIGN=left>
<INPUT TYPE=TEXT ID=SELLER_COUNTY NAME=SELLER_COUNTY MAXLENGTH=26 STYLE="WIDTH: 100%" VALUE="<% writeSafeValue( "SELLER_COUNTY" ); %>">
</TD>
<TD STYLE="WIDTH: 15%" ID=TXT_SELLER_AREA ALIGN=right>Area: </TD>
<TD STYLE="WIDTH: 35%" ALIGN=left>
<INPUT TYPE=TEXT ID=SELLER_AREA NAME=SELLER_AREA MAXLENGTH=31 STYLE="WIDTH: 100%" VALUE="<% writeSafeValue( "SELLER_AREA" ); %>">
</TD>
</TR>
<TR>
<TD STYLE="WIDTH: 15%" ID=TXT_SELLER_FEATURES ALIGN=right VALIGN=top>Features: </TD>
<TD COLSPAN=2 STYLE="WIDTH: 50%" ALIGN=left>
<SELECT MULTIPLE=TRUE SIZE=5 ID=SELLER_FEATURES NAME=SELLER_FEATURES STYLE="WIDTH: 80%"> <OPTION VALUE="COOL_Central Air">Central Air
<OPTION VALUE="HEAT_Gas Heat"<% if( Request.QueryString( "SELLER_FEATURES" ) == "HEAT_Gas Heat" ) Response.Write( " SELECTED" ); %>>Gas Heat
<OPTION VALUE="POOL_Swimming Pool"<% if( Request.QueryString( "SELLER_FEATURES" ) == "POOL_Swimming Pool" ) Response.Write( " SELECTED" ); %>>Swimming Pool
<OPTION VALUE="FEATURE_Spa/Hot Tub"<% if( Request.QueryString( "SELLER_FEATURES" ) == "FEATURE_Spa/Hot Tub" ) Response.Write( " SELECTED" ); %>>Spa/Hot Tub
<OPTION VALUE="HEAT_Fireplace"<% if( Request.QueryString( "SELLER_FEATURES" ) == "HEAT_Fireplace" ) Response.Write( " SELECTED" ); %>>Fireplace
<OPTION VALUE="FLOOR_Hardwood Floors"<% if( Request.QueryString( "SELLER_FEATURES" ) == "FLOOR_Hardwood Floors" ) Response.Write( " SELECTED" ); %>>Hardwood Floors
<OPTION VALUE="OTHER_Tennis Court"<% if( Request.QueryString( "SELLER_FEATURES" ) == "OTHER_Tennis Court" ) Response.Write( " SELECTED" ); %>>Tennis Court
<OPTION VALUE="GARAGE_1 Car Garage"<% if( Request.QueryString( "SELLER_FEATURES" ) == "GARAGE_1 Car Garage" ) Response.Write( " SELECTED" ); %>>1 Car Garage
<OPTION VALUE="OTHER_Eat-in Kitchen"<% if( Request.QueryString( "SELLER_FEATURES" ) == "OTHER_Eat-in Kitchen" ) Response.Write( " SELECTED" ); %>>Eat-in Kitchen
<OPTION VALUE="OTHER_Family Room"<% if( Request.QueryString( "SELLER_FEATURES" ) == "OTHER_Family Room" ) Response.Write( " SELECTED" ); %>>Family Room
<OPTION VALUE="OTHER_Breakfast Area"<% if( Request.QueryString( "SELLER_FEATURES" ) == "OTHER_Breakfast Area" ) Response.Write( " SELECTED" ); %>>Breakfast Area
<OPTION VALUE="GARAGE_2 Car Garage"<% if( Request.QueryString( "SELLER_FEATURES" ) == "GARAGE_2 Car Garage" ) Response.Write( " SELECTED" ); %>>2 Car Garage
<OPTION VALUE="OTHER_Game/Rec. Room"<% if( Request.QueryString( "SELLER_FEATURES" ) == "OTHER_Game/Rec. Room" ) Response.Write( " SELECTED" ); %>>Game/Rec. Room
<OPTION VALUE="GARAGE_RV Parking"<% if( Request.QueryString( "SELLER_FEATURES" ) == "GARAGE_RV Parking" ) Response.Write( " SELECTED" ); %>>RV Parking
<OPTION VALUE="OTHER_Cul-de-sac Location"<% if( Request.QueryString( "SELLER_FEATURES" ) == "OTHER_Cul-de-sac Location" ) Response.Write( " SELECTED" ); %>>Cul-de-sac Location
<OPTION VALUE="GARAGE_3 or More Car Garage"<% if( Request.QueryString( "SELLER_FEATURES" ) == "GARAGE_3 or More Car Garage" ) Response.Write( " SELECTED" ); %>>3 or More Car Garage
<OPTION VALUE="OTHER_Great Room"<% if( Request.QueryString( "SELLER_FEATURES" ) == "OTHER_Great Room" ) Response.Write( " SELECTED" ); %>>Great Room
<OPTION VALUE="OTHER_Den/Study"<% if( Request.QueryString( "SELLER_FEATURES" ) == "OTHER_Den/Study" ) Response.Write( " SELECTED" ); %>>Den/Study
<OPTION VALUE="FEATURE_Waterfront"<% if( Request.QueryString( "SELLER_FEATURES" ) == "FEATURE_Waterfront" ) Response.Write( " SELECTED" ); %>>Waterfront
<OPTION VALUE="FEATURE_Waterview"<% if( Request.QueryString( "SELLER_FEATURES" ) == "FEATURE_Waterview" ) Response.Write( " SELECTED" ); %>>Waterview
</SELECT>
</TD>
</TR>
</TABLE>
</TD>
</TR>
<TR>
<TD><BR></TD>
<TR>
<TD COLSPAN=6 STYLE="WIDTH: 100% HEIGHT: 20px" BGCOLOR=#FFFFFF>
<STRONG STYLE="FONT-SIZE: xx-small">Other information and comments</STRONG>
<HR>
</TD>
</TR>
<TR>
<TD STYLE="width: 25%" ALIGN=right>Please contact me by:</TD>
<TD STYLE="width: 75%" ALIGN=left COLSPAN=5>
<INPUT TYPE=RADIO NAME="CONTACT" VALUE="Phone"<% if( Request.QueryString( "CONTACT" ) == "Phone" || Request.QueryString( "CONTACT" ).Count == 0 ) Response.Write( " CHECKED" ); %>>Phone</INPUT>
<INPUT TYPE=RADIO NAME="CONTACT" VALUE="Email"<% if( Request.QueryString( "CONTACT" ) == "Email" ) Response.Write( " CHECKED" ); %>>Email</INPUT>
</TD>
</TR>
<TR HEIGHT=50px ROWSPAN=2>
<TD STYLE="width: 25%" ALIGN=right VALIGN=top>Comments:</TD>
<TD STYLE="width: 75%" ALIGN=left VALIGN=bottom COLSPAN=5>
<FONT SIZE="xx-small">
<TEXTAREA ID=COMMENTS NAME="COMMENTS" STYLE="FONT-SIZE: 80%; FONT-FAMILY: sans-serif; WIDTH: 80%; HEIGHT: 70px; OVERFLOW-Y: scroll; SIZE: 20,5;" ROWS="5" COLS="20"><% writeSafeValue( "COMMENTS" ); %></TEXTAREA>
</FONT>
</TD>
</TR>
<TR>
<TD STYLE="width: 25%" ALIGN=right></TD>
<TD STYLE="width: 75%" ALIGN=left COLSPAN=5>
<INPUT TYPE=BUTTON VALUE="Submit" STYLE="width: 80%" OnClick="Submit()" ID="SUBMIT">
</TD>
</TR>
</TABLE>
</DIV>
<INPUT TYPE="HIDDEN" NAME="PAGEID" VALUE="bWFsbGVu">
<INPUT TYPE="HIDDEN" NAME="SOURCE" VALUE="Agent personal web page">
<INPUT TYPE="HIDDEN" NAME="MSG_SUCCESS" VALUE="<P><FONT face=Arial size=4><STRONG>Thank you for your inquiry. You will be contacted as soon as possible.</STRONG></P></FONT><br><a href=javascript:window.close();>Click here to close this window</a>">
<INPUT TYPE="HIDDEN" NAME="MSG_FAILURE" VALUE="<P><FONT face=Arial size=4><STRONG>Your inquiry has not been sent. The server may be busy, or an unexpected problem has occurred. Please try again. If the problem persists, please email me directly at <a HREF=mailto:mark-allen@cfl.rr.com>mark-allen@cfl.rr.com</a></STRONG></font><br><br><a href=javascript:history.go(-1)>Click here to return to the previous page</a>">
<INPUT TYPE="HIDDEN" NAME="MLS_Agent_ID" VALUE="<% writeSafeValue( "MLS_Agent_ID" ); %>">
<INPUT TYPE="HIDDEN" NAME="MLS_Office_ID" VALUE="<% writeSafeValue( "MLS_Office_ID" ); %>">
<INPUT TYPE="HIDDEN" NAME="MLS_Number" VALUE="<% writeSafeValue( "MLS_Number" ); %>">
<INPUT TYPE="HIDDEN" NAME="SUBSOURCE" VALUE="Default form">
<INPUT TYPE="HIDDEN" NAME="URL_SUCCESS" VALUE="">
<INPUT TYPE="HIDDEN" NAME="ASSIGNED_TO" VALUE="{F1245896-4BC0-4BD4-9D25-A53882DF83A9}">
<!-- NOTE: The SUBSOURCE field is associated with the Inquiry form field -->
</FORM>
</CENTER>
</BODY>
</HTML>