﻿<html>

<head>
<meta http-equiv="Content-Language" content="en-us">
<meta name="GENERATOR" content="Microsoft FrontPage 12.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>Meservier.com - Register for Maine Real Estate MLS Listings</title>
<meta name="Author" content="Meservier &amp; Associates">
<style type="text/css">
.style1 {
	color: #FFFFFF;
}
.style2 {
	text-align: right;
}
.style3 {
	text-align: center;
	font-size: x-small;
}
.style4 {
	font-size: x-small;
}
.style5 {
	font-size: small;
}
.style6 {
	text-decoration: blink;
}
.style7 {
	color: #FFFFFF;
	font-size: x-small;
}
</style>
<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;
			}
			
			if( !bRequirementsMet ) {
				window.alert( "\nPlease enter your FIRST NAME and 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 && 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 BUYER minimum price must be less than or equal to the maximum price.
			if( bRequirementsMet ) {
				var sMinPrice = getElementById( "BUYER_MIN_PRICE" ).value;
				var sMaxPrice = getElementById( "BUYER_MAX_PRICE" ).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" )
					getElementById( "BUYER_MAX_PRICE" ).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";
			}
			
			window.moveTo( 0, 0 );
			window.resizeTo( screen.availWidth, screen.availHeight );

			getElementById( "FIRST_NAME" ).onkeypress = Capitalize;
			getElementById( "LAST_NAME" ).onkeypress = Capitalize;
		}
		
		
		function size( objTable ) {
			var backgroundImage = getElementById( "BACKGROUND_IMAGE" );
			
			if( typeof( backgroundImage ) != "undefined" && typeof( objTable ) != "undefined" && backgroundImage != 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_SQUAREFEET"		), section == "Buyer" );
			setControl( getElementById( "SELLER_BEDROOMS"		), section == "Buyer" );
			setControl( getElementById( "SELLER_BATHROOMS"		), section == "Buyer" );
			setControl( getElementById( "TXT_SELLER"			), 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( "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( "TXT_BUYER"				), 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_MIN_PRICE"	), section == "Seller" );
			setControl( getElementById( "TXT_BUYER_MAX_PRICE"	), section == "Seller" );
		}
		
		
		function setControl( control, disable, value ) {
			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 style="font-family: Arial,Helvetica; background-image: url('http://www.meservier.com/bin/web/real_estate?ZKEY=&amp;acnt=AR113956&amp;action=IMAGE&amp;dir=about&amp;pn=bgimage&amp;ts=1163796521/bgimage.jpg')" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" link="#006666" alink="#006666" vlink="#006666" bgcolor="#FFF0F0" text="#000000" onload="init();">

<table width="800" height="104" border="0" cellpadding="0" cellspacing="0">
	<tr>
		<td height="104" align="center" valign="middle" background="http://www.meservier.com/images/rea/layout/L1007/S1019/keller_williams/subpages/top.gif">
		<table width="795" border="0" cellspacing="0" cellpadding="5">
			<tr>
				<td width="174" align="center" valign="middle"></td>
				<td width="571" align="center" valign="middle"><strong>
				<font face="Verdana, Arial, Helvetica, sans-serif" color="#000066">
				Statewide MLS Search <br />
				Search over 25,000 Properties!</font></strong></td>
				<td width="50">&nbsp;</td>
			</tr>
		</table>
		</td>
	</tr>
</table>
<div align="left">
	<table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="13%" id="AutoNumber1" height="372" align="left">
		<tr>
			<td width="100%" height="372">
			<table width="180" border="0" valign="top" cellpadding="0" cellspacing="0">
				<tr>
					<td height="100%" align="center" valign="top" background="http://www.meservier.com/images/rea/layout/L1007/S1019/keller_williams/subpages/nav-tile.gif" class="text">
					<center>
					<p>
					<a target="_top" href="http://www.meservier.com/bin/web/real_estate?ZKEY=&amp;acnt=AR113956&amp;action=ACTIVATE_FRAMES&amp;button=CONTACT_ME&amp;fr=1&amp;tm=1163796521">
					<img src="http://www.meservier.com/bin/rea.php?ZKEY=&amp;acnt=AR113956&amp;action=IMAGE&amp;dir=about&amp;pn=photo&amp;ts=1163796409/photo.jpg" border="0" vspace="5" /></a>
					</p>
					</center>
					<p><br />
					<font color="#FFEAEA"><strong>Keller Williams Realty Mid Maine<br />
					(207) 784-2525</strong></font>
					<script language="javascript1.1">
function change_img_src(Name,src)
{
        if (document.images && (document[Name])) {
                document[Name].src = src;
        }
}
          </script>
					</p>
					<table border="0" align="center" cellpadding="0" cellspacing="4" height="432">
						<tr>
							<td height="188">
							<table width="140" border="0" cellspacing="1" cellpadding="3" bordercolor="#efe0e0" height="180">
								<tr>
									<td align="left" nowrap height="53">
									<font face="Arial,Helvetica" size="+0">
									<table border="0" cellpadding="0" cellspacing="2" height="87" width="132">
										<tr>
											<td width="4" height="19">&nbsp;</td>
											<td width="122" class="style1">
											<h6>
											<font face="Arial,Helvetica" size="+0">
											<a href="http://www.meservier.com/bin/web/real_estate/AR113956/HOME/Auburn/1163796409.html" target="_top" title="Home" class="sidebar">
											<span class="style1"><strong>H<span class="style4">ome</span></strong></span></a></font></h6>
											</td>
										</tr>
										<tr>
											<td width="4" height="1"></td>
											<td height="1" width="122" class="style1">
											<h6>
											<font face="Arial,Helvetica">
											<a href="http://www.meservier.com/bin/web/real_estate/AR113956/CONTACT_ME/Auburn/1163796409.html" target="_top" title="Email Sue" class="sidebar">
											<span class="style7"><strong>Email Sue</strong></span></a></font></h6>
											</td>
										</tr>
										<tr>
											<td width="4" height="36">&nbsp;</td>
											<td height="36" width="122" class="style1">
											<h6>
											<font face="Arial,Helvetica">
											<a href="http://www.meservier.com/bin/web/real_estate?acnt=AR113956&amp;ZKEY=&amp;action=ACTIVATE_FRAMES&amp;button=EXTRA_FORM1&amp;linkout_sourcepage=RENTALS&amp;tm=&amp;linkout=http%3A%2F%2Ftponline.realty-wire.com%2FUsers%2F8C622C51-6E9E-4CC4-9C30-704847D12EF2%2F%7B18D8BE27-9D41-4192-B296-F6702E331DF0%7D%2FSimple.asp" target="_top" title="Contact Us Now" class="sidebar">
											<span class="style7"><strong>Contact 
											Us Now</strong></span></a></font></h6>
											</td>
										</tr>
									</table>
									</font></td>
								</tr>
								<tr>
									<td height="1"></td>
								</tr>
								<tr>
									<td height="18"></td>
								</tr>
								<tr>
									<td height="18"></td>
								</tr>
								<tr>
									<td height="18"></td>
								</tr>
								<tr>
									<td height="18"></td>
								</tr>
								<tr>
									<td height="18"></td>
								</tr>
								<tr>
									<td height="18"></td>
								</tr>
								<tr>
									<td height="18"></td>
								</tr>
							</table>
							</td>
						</tr>
					</table>
					</td>
				</tr>
			</table>
			</td>
		</tr>
		<tr>
			<div align="center">
			<center></center></div>
		</tr>
		<div align="center">
		<center align="center"></center></div>
		<div align="center">
		<center align="center"></center></div>
	</table>
	<div align="center">
		<table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="462" id="AutoNumber2" height="143">
			<tr>
				<td width="128"><br>
				<h2>
				<img src="http://cisdata.net/acnt/AR113956/rea/filemanager/mainehomesearch.gif" width="85" height="112" hspace="4"></h2>
				</td>
				<td style="width: 411px"><font size="5" color="#800000">Search for a house 
				today!</font><p align="left">Your new home is just a click away.<br>
				Get complete access to all the listings in Maine by completing this 
				short form.</p>
				</td>
			</tr>
		</table>
		<form id="frmMain" action="https://www.topproduceronline.com/LeadToolkit.asp" method="post">
			<div id="CONTACT_INFO" name="CONTACT_INFO" align="center" style="WIDTH: 725px">
				<div style="WIDTH: 100%; TEXT-ALIGN: CENTER">
					<strong>Please enter your information in the following fields 
					and click the submit button. </strong></div>
				<br>
				<table width="80%" cols="3" border="0" cellpadding="2" cellspacing="0" style="font-size: xx-small; font-family: sans-serif;">
					<tr>
						<td style="width: 35%" align="right" class="style4">
                    <font color="#FF6600"><span class="style5">*</span></font>First name:</td>
						<td style="width: 40%" align="left" colspan="3">&nbsp;<span class="style4"><input type="TEXT" maxlength="21" id="FIRST_NAME" name="FIRST_NAME" style="width: 75%" value="">
						</td>
						<td style="WIDTH: 25%"><span class="style4"></td>
					</tr>
					<tr>
						<td align="right">
                    <font color="#FF6600"><span class="style4">*</span></font><span class="style4">Last name:</span></span></span></td>
						<td align="left" colspan="3">&nbsp;<span class="style4"><input type="TEXT" maxlength="26" id="LAST_NAME" name="LAST_NAME" style="width: 75%" value="">
						</td>
					</tr>
					<tr>
						<td align="right" class="style4">
                    <font color="#FF6600"><span class="style5">*</span></font>Email:</span></td>
						<td align="left" colspan="3">&nbsp;<span class="style4"><input type="TEXT" maxlength="80" id="EMAIL" name="EMAIL" style="width: 75%" value="">
						</td>
					</tr>
					<tr>
						<td align="right" class="style4">
                    <font color="#FF6600"><span class="style5">*</span></font>Phone:</span></td>
						<td align="left" valign="middle" colspan="3">
						<table style="WIDTH: 80%;" border="0" cellpadding="0" cellspacing="0">
							<tr>
								<td>(<span class="style4"><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="">) 
								-
								<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=""> 
								-
								<input type="TEXT" maxlength="4" id="PHONE_NUMBER" name="PHONE_NUMBER" style="width: 27%" onkeyup="enableBestTime();" onkeypress="allowKeys( this, '1234567890' );" onbeforepaste="validateInput( this, '1234567890' );" onpaste="enableBestTime();" value="">
								</span>
								</td>
							</tr>
						</table>
						</td>
					</tr>
					<tr>
						<td align="right" class="style4">Best time to reach me:</td>
						<td align="left" colspan="3">&nbsp;<span class="style4"><select id="BEST_TIME" name="BEST_TIME" style="width: 75%" disabled>
						<option value="Anytime" selected="">Anytime</option>
						<option value="Morning">Morning</option>
						<option value="Afternoon">Afternoon</option>
						<option value="Evening">Evening</option>
						</select> </td>
					</tr>
					<tr>
						<td style="HEIGHT: 10px"></td>
					</tr>
					<tr>
						<td colspan="5" style="width: 100%" align="center">
						<span class="style4">I am:&nbsp;
						<input id="STATUS_BUYER" type="RADIO" name="STATUS" onclick="enableSection( 'Buyer' );" value="Buy-New-Home" checked>Buying</input></span></span>
						<span class="style4">
						<input id="STATUS_SELLER" type="RADIO" name="STATUS" onclick="enableSection( 'Seller' );" value="Sell-Home">Selling</input></span>
						<span class="style4">
						<input id="STATUS_BOTH" type="RADIO" name="STATUS" onclick="enableSection( 'Both' );" value="Buy-Resale-Home">Both</input>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
						</span>
						</td>
					</tr>
				</table>
				<tr>
				<td><br>
				</td>
				</tr>
				<tr>
				<td colspan="2">
				<table width="100%" cols="4" border="0" cellpadding="2" cellspacing="0" style="font-SIZE: xx-small; font-family: sans-serif; COLOR: #800000;">
					<tr>
						<td style="WIDTH: 20%"></td>
						<td style="WIDTH: 25%"></td>
						<td style="WIDTH: 15%"></td>
						<td style="WIDTH: 25%"></td>
						<td style="WIDTH: 5%"></td>
					</tr>
					<tr>
						<td colspan="2" id="TXT_BUYER" bgcolor="#FFC0C0" align="CENTER">
						<strong style="font-SIZE: small">Buying property features</strong>
						<!HR></td>
						<td colspan="3" id="TXT_SELLER" bgcolor="#FFC0C0" align="CENTER">
						<strong style="font-SIZE: small">My property features</strong>
						<!HR></td>
					</tr>
					<tr>
						<td id="TXT_BUYER_SQUAREFEET" style="WIDTH: 20%" align="right" class="style4">
						Square feet: </td>
						<td style="WIDTH: 25%" align="left" class="style4">
						<select id="BUYER_SQUAREFEET" name="BUYER_SQUAREFEET" style="WIDTH: 80%">
						<option value="0-999">0-999</option>
						<option value="1000-1499">1000-1499</option>
						<option value="1500-1999">1500-1999</option>
						<option value="2000-2499">2000-2499</option>
						<option value="2500-2999">2500-2999</option>
						<option value="3000-3499">3000-3499</option>
						<option value="3500-3999">3500-3999</option>
						<option value="4000+">4000+</option>
						</select> </td>
						<td id="TXT_SELLER_SQUAREFEET" style="WIDTH: 15%; BORDER-LEFT: 1px solid lightgray;" align="right" class="style4">
						Square feet: </td>
						<td style="WIDTH: 25%" align="left">
						<input type="TEXT" maxlength="16" id="SELLER_SQUAREFEET" name="SELLER_SQUAREFEET" style="WIDTH: 80%" onkeypress="allowKeys( this, '1234567890+-,.' );" onbeforepaste="validateInput( this, '1234567890+-,.' );" value="">
						</td>
					</tr>
					<tr>
						<td id="TXT_BUYER_BEDROOMS" style="WIDTH: 20%" align="right" class="style4">
						Bedrooms: </td>
						<td style="WIDTH: 25%" align="left" class="style4">
						<select id="BUYER_BEDROOMS" name="BUYER_BEDROOMS" style="WIDTH: 80%">
						<option value="1">1</option>
						<option value="2">2</option>
						<option value="3">3</option>
						<option value="4">4</option>
						<option value="5+">5+</option>
						</select> </td>
						<td id="TXT_SELLER_BEDROOMS" style="WIDTH: 15%; BORDER-LEFT: 1px solid lightgray;" align="right" class="style4">
						Bedrooms: </td>
						<td style="WIDTH: 25%" align="left">
						<input type="TEXT" maxlength="16" id="SELLER_BEDROOMS" name="SELLER_BEDROOMS" style="WIDTH: 80%" onkeypress="allowKeys( this, '1234567890+-' );" onbeforepaste="validateInput( this, '1234567890+-' );" value="">
						</td>
					</tr>
					<tr>
						<td id="TXT_BUYER_BATHROOMS" style="WIDTH: 20%" align="right" class="style4">
						Bathrooms: </td>
						<td style="WIDTH: 25%" align="left" class="style4">
						<select id="BUYER_BATHROOMS" name="BUYER_BATHROOMS" style="WIDTH: 80%">
						<option value="1">1</option>
						<option value="2">2</option>
						<option value="3">3</option>
						<option value="4+">4+</option>
						</select> </td>
						<td id="TXT_SELLER_BATHROOMS" style="WIDTH: 15%; BORDER-LEFT: 1px solid lightgray;" align="right" class="style4">
						Bathrooms: </td>
						<td style="WIDTH: 25%" align="left">
						<input type="TEXT" maxlength="16" id="SELLER_BATHROOMS" name="SELLER_BATHROOMS" style="WIDTH: 80%" onkeypress="allowKeys( this, '1234567890+-.' );" onbeforepaste="validateInput( this, '1234567890+-.' );" value="">
						</td>
					</tr>
					<tr>
						<td style="WIDTH: 20%" id="TXT_BUYER_MIN_PRICE" align="right" class="style4">
						Minimum price: </td>
						<td style="WIDTH: 25%" align="left" class="style4">
						<select id="BUYER_MIN_PRICE" name="BUYER_MIN_PRICE" style="WIDTH: 80%; height: 22px;">
						<option value="$0" selected="">$0</option>
						<option value="$25,000">$25,000</option>
						<option value="$50,000">$50,000</option>
						<option value="$75,000">$75,000</option>
						<option value="$100,000">$100,000</option>
						<option value="$125,000">$125,000</option>
						<option value="$150,000">$150,000</option>
						<option value="$175,000">$175,000</option>
						<option value="$200,000">$200,000</option>
						<option value="$225,000">$225,000</option>
						<option value="$250,000">$250,000</option>
						<option value="$275,000">$275,000</option>
						<option value="$300,000">$300,000</option>
						<option value="$325,000">$325,000</option>
						<option value="$350,000">$350,000</option>
						<option value="$375,000">$375,000</option>
						<option value="$400,000">$400,000</option>
						<option value="$425,000">$425,000</option>
						<option value="$450,000">$450,000</option>
						<option value="$475,000">$475,000</option>
						<option value="$500,000">$500,000</option>
						<option value="$525,000">$525,000</option>
						<option value="$550,000">$550,000</option>
						<option value="$575,000">$575,000</option>
						<option value="$600,000">$600,000</option>
						<option value="$625,000">$625,000</option>
						<option value="$650,000">$650,000</option>
						<option value="$675,000">$675,000</option>
						<option value="$700,000">$700,000</option>
						<option value="$725,000">$725,000</option>
						<option value="$750,000">$750,000</option>
						<option value="$775,000">$775,000</option>
						<option value="$800,000">$800,000</option>
						<option value="$825,000">$825,000</option>
						<option value="$850,000">$850,000</option>
						<option value="$875,000">$875,000</option>
						<option value="$900,000">$900,000</option>
						<option value="$925,000">$925,000</option>
						<option value="$950,000">$950,000</option>
						<option value="$975,000">$975,000</option>
						<option value="$1,000,000">$1,000,000</option>
						</select> </td>
						<td style="WIDTH: 25%; BORDER-LEFT: 1px solid lightgray;" align="left">
						&nbsp;</td>
					</tr>
					<tr>
						<td style="WIDTH: 20%" id="TXT_BUYER_MAX_PRICE" align="right" class="style4">
						Maximum price: </td>
						<td style="WIDTH: 25%" align="left" class="style4">
						<select id="BUYER_MAX_PRICE" name="BUYER_MAX_PRICE" style="WIDTH: 80%">
						<option value="$25,000">$25,000</option>
						<option value="$50,000">$50,000</option>
						<option value="$75,000">$75,000</option>
						<option value="$100,000">$100,000</option>
						<option value="$125,000">$125,000</option>
						<option value="$150,000">$150,000</option>
						<option value="$175,000">$175,000</option>
						<option value="$200,000">$200,000</option>
						<option value="$225,000">$225,000</option>
						<option value="$250,000">$250,000</option>
						<option value="$275,000">$275,000</option>
						<option value="$300,000">$300,000</option>
						<option value="$325,000">$325,000</option>
						<option value="$350,000">$350,000</option>
						<option value="$375,000">$375,000</option>
						<option value="$400,000">$400,000</option>
						<option value="$425,000">$425,000</option>
						<option value="$450,000">$450,000</option>
						<option value="$475,000">$475,000</option>
						<option value="$500,000">$500,000</option>
						<option value="$525,000">$525,000</option>
						<option value="$550,000">$550,000</option>
						<option value="$575,000">$575,000</option>
						<option value="$600,000">$600,000</option>
						<option value="$625,000">$625,000</option>
						<option value="$650,000">$650,000</option>
						<option value="$675,000">$675,000</option>
						<option value="$700,000">$700,000</option>
						<option value="$725,000">$725,000</option>
						<option value="$750,000">$750,000</option>
						<option value="$775,000">$775,000</option>
						<option value="$800,000">$800,000</option>
						<option value="$825,000">$825,000</option>
						<option value="$850,000">$850,000</option>
						<option value="$875,000">$875,000</option>
						<option value="$900,000">$900,000</option>
						<option value="$925,000">$925,000</option>
						<option value="$950,000">$950,000</option>
						<option value="$975,000">$975,000</option>
						<option value="$1,000,000">$1,000,000</option>
						<option value="no maximum" selected="">no maximum
						</option>
						</select> </td>
						<td style="WIDTH: 25%; BORDER-LEFT: 1px solid lightgray;" align="left">
						&nbsp;</td>
					</tr>
					<tr>
						<td style="WIDTH: 20%; height: 26px;" id="TXT_BUYER_MAX_PRICE" align="right" class="style4">
						City:&nbsp; </td>
						<td style="WIDTH: 25%; height: 26px;" align="left" class="style4">
						<span class="style4">
						<input maxlength="21" id="Buyer_FutureCity" name="Buyer_FutureCity" style="width: 97%" value=""></td>
						<td style="WIDTH: 25%; height: 26px;" align="left">
						</td>
					</tr>
					<tr>
                          <td align="left" height="134" width="150" class="style4">
							<div class="style2">
								Features
                                                                                                                                                                                                                                  </div>
                          <p class="style2">(Use <font color="#FF6600">CTRL</font> Key 
							and CLICK for 
                          multiple selections)</p>
                          <p>&nbsp;</td>
                          <td align="left" height="134" width="302" class="style4">
                          <select name="Features" size="8" multiple="multiple">
                          <option value="Central_Air">Central Air</option>
                          <option value="Acreage">Acreage</option>
                          <option value="Gas_Heat">Gas Heat</option>
                          <option value="Swimming_Pool">Swimming Pool</option>
                          <option value="Spa/Hot_Tub">Spa/Hot Tub</option>
                          <option value="Hardwood_Floors">Hardwood Floors
                          </option>
                          <option value="Tennis_Court">Tennis Court</option>
                          <option value="Car_Garage">1 Car Garage</option>
                          <option value="Eat-in_Kitchen">Eat-in Kitchen</option>
                          <option value="Family_Room">Family Room</option>
                          <option value="Breakfast_Area">Breakfast Area</option>
                          <option value="2_Car_Garage">2 Car Garage</option>
                          <option value="Game/Rec_Room">Game/Rec. Room</option>
                          <option value="RV_Parking">RV Parking</option>
                          <option value="Cul-de-sac_Location">Cul-de-sac Location
                          </option>
                          <option value="3_Car_Garage">3 Car Garage</option>
                          <option value="Great_Room">Great Room</option>
                          <option value="Den/Study">Den/Study</option>
                          <option value="Waterfront">Waterfront</option>
                          <option value="Waterview">Waterview</option>
                          </select> </td>
                        </tr>
					<tr>
                            <td width="150" align="right" height="55" class="style4">
                            <p class="style2">Are you currently working with a&nbsp; Realtor?&nbsp;&nbsp; </td>
                            <td width="302" height="55">
                                    <span class="formtxtsmall">
                                    <span class="style4">
                                    &nbsp;&nbsp;&nbsp;&nbsp;
                                    <input name="BUYER_Working With Realtor?" type="radio" value=" - Yes"> 
                                    Yes
                                    <input name="Working With Realtor?" type="radio" value=" - No"> 
                                    No</span></span></td>
                          </tr>
					<tr>
						<td style="WIDTH: 20%" id="TXT_BUYER_MAX_PRICE" align="right" class="style5">
						&nbsp;</td>
						<td align="left" colspan="2">
                    <font color="#FF6600"><span class="style5">*</span></font><span class="style5">
					<span class="style6">marks any 
                    required fields </span> </span> </td>
					</tr>
					<tr>
						<td style="WIDTH: 20%" id="TXT_BUYER_MAX_PRICE" align="right">
						&nbsp;</td>
						<td style="WIDTH: 25%" align="left">
						&nbsp;</td>
						<td style="WIDTH: 25%; BORDER-LEFT: 1px solid lightgray;" align="left">
						&nbsp;</td>
					</tr>
				</table>
				<table width="100%" cols="4" border="0" cellpadding="2" cellspacing="0" style="font-SIZE: xx-small; font-family: sans-serif; COLOR: #800000;">
					<tr>
						<td style="WIDTH: 22%"></td>
						<td class="style3"><em>I 
                    agree that by providing information and clicking on the 
                    &quot;Submit&quot; button that I am giving permission for a REALTOR to 
                    contact me as soon as possible<br>
						via email or telephone.</em></td>
						<td style="WIDTH: 28%"></td>
					</tr>
					<tr>
						<td><br>
						</td>
					</tr>
					<tr>
						<td colspan="3" bgcolor="#FFC0C0">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
						<strong style="FONT-SIZE: small">Other information and comments</strong><!HR>
						</td>
					</tr>
					<tr height="50" rowspan="2">
						<td style="WIDTH: 25%" align="right" valign="top" class="style4">Comments:</td>
						<td align="left" valign="bottom" colspan="2">
						<font size="xx-small">
						<textarea id="COMMENTS" name="COMMENTS" style="FONT-SIZE: 80%; FONT-FAMILY: sans-serif; WIDTH: 70%; HEIGHT: 70px; OVERFLOW-Y: scroll; SIZE: 20,5;" rows="5" cols="20"></textarea>
						</font></td>
					</tr>
					<tr>
						<td style="WIDTH: 25%" align="right"></td>
						<td align="left" colspan="2">
						<input type="BUTTON" value="Submit" style="WIDTH: 70%" onclick="Submit()" id="SUBMIT">
						</td>
					</tr>
				</table>
			</div>
			<input type="hidden" name="PAGEID" value="U01FU0VSVklFUg==">
			<input type="hidden" name="SOURCE" value="Meservier.com">
			<input type="hidden" name="MSG_SUCCESS" value="&lt;P&gt;&lt;FONT face=Arial size=4&gt;&lt;STRONG&gt;Thank you for your inquiry. You will be contacted as soon as possible.&lt;/STRONG&gt;&lt;/P&gt;&lt;/FONT&gt;&lt;br&gt;&lt;a href=javascript:window.close();&gt;Click here to close this window&lt;/a&gt;">
			<input type="hidden" name="MSG_FAILURE" value="&lt;P&gt;&lt;FONT face=Arial size=4&gt;&lt;STRONG&gt;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 &lt;a HREF=mailto:sue@meservier.com&gt;sue@meservier.com&lt;/a&gt;&lt;/STRONG&gt;&lt;/font&gt;&lt;br&gt;&lt;br&gt;&lt;a href=javascript:history.go(-1)&gt;Click here to return to the previous page&lt;/a&gt;">
			<input type="HIDDEN" name="SELLER_LOCATION_SAME_ADDRESS" value="on">
			<input type="HIDDEN" name="MLS_Agent_ID" value="">
			<input type="HIDDEN" name="MLS_Office_ID" value="">
			<input type="HIDDEN" name="MLS_Number" value="">
			<input type="HIDDEN" name="SUBSOURCE" value="Register for MLS">
			<input type="HIDDEN" name="URL_SUCCESS" value="http://www.meservier.com/bin/web/real_estate?acnt=AR113956&amp;ZKEY=21cf418342c41be25b56404854a9d048&amp;action=ACTIVATE_FRAMES&amp;button=RENTALS&amp;linkout_sourcepage=HOMEPAGE&amp;tm=&amp;linkout=http://kwauburn.wowpages.com/idxframe.tml">
			<input type="HIDDEN" name="ASSIGNED_TO" value="">
			<!-- NOTE: The SUBSOURCE field is associated with the Inquiry form field -->
		</form>
	</div>
</div>

</body>

</html>
