ÿþ <HTML><HEAD> <TITLE>Real Estate Web Design</TITLE> <style type="text/css"> html{ height:100%; } body{ height:100%; margin:0px; padding:0px; font-family: Trebuchet MS, Lucida Sans Unicode, Arial, sans-serif; } /* Entire pane */ #dhtmlItem_xpPane{ background-color:#7190e0; /* Blue background color */ float:left; height:100%; width:200px; /* Width of panel */ } #dhtmlItem_xpPane .dhtmlItem_panel{ margin-left:10px; margin-right:10px; margin-top:10px; } #dhtmlItem_xpPane .panelContent{ font-size:0.7em; background-image:url('images/bg_pane_right.gif'); background-position:top right; background-repeat:repeat-y; border-left:1px solid #FFF; border-bottom:1px solid #FFF; padding-left:2px; padding-right:2px; overflow:hidden; position:relative; } #dhtmlItem_xpPane .panelContent div{ position:relative; } #dhtmlItem_xpPane .dhtmlItem_panel .topBar{ background-image:url('images/bg_panel_top_right.gif'); background-repeat:no-repeat; background-position:top right; height:25px; padding-right:5px; } #dhtmlItem_xpPane .dhtmlItem_panel .topBar span{ /* Heading text options */ line-height:25px; vertical-align:middle; font-family:arial; /* Arial font */ font-size:0.7em; /* Font size */ color:#215DC6; /* Light blue color */ font-weight:bold; /* Bold font */ padding-left:5px; /* Space at the left */ float:left; /* Don't change this one */ } #dhtmlItem_xpPane .dhtmlItem_panel .topBar img{ float:right; cursor:pointer; } </style> <script type="text/javascript"> var xpPanel_slideActive = true; // Slide down/up active? var xpPanel_slideSpeed = 15; // Speed of slide var dhtmlItem_xpPane; var dhtmlItem_paneIndex; var savedActivePane = false; var savedActiveSub = false; function showHidePaneContent() { var img = this.getElementsByTagName('IMG')[0]; var obj = document.getElementById('paneContent' + img.id.replace(/[^0-9]/g,'')); if(img.src.toLowerCase().indexOf('up')>=0){ img.src = img.src.replace('up','down'); if(xpPanel_slideActive){ obj.style.display='block'; slidePane((xpPanel_slideSpeed*-1),obj.id); }else{ obj.style.display='none'; } }else{ img.src = img.src.replace('down','up'); if(xpPanel_slideActive){ if(document.all){ obj.style.display='block'; obj.style.height = '1px'; } slidePane(xpPanel_slideSpeed,obj.id); }else{ obj.style.display='block'; subDiv = obj.getElementsByTagName('DIV')[0]; obj.style.height = subDiv.offsetHeight + 'px'; } } } function slidePane(slideValue,id) { var activePane = document.getElementById(id); if(activePane==savedActivePane){ var subDiv = savedActiveSub; }else{ var subDiv = activePane.getElementsByTagName('DIV')[0]; } savedActivePane = activePane; savedActiveSub = subDiv; var height = activePane.offsetHeight; var innerHeight = subDiv.offsetHeight; height+=slideValue; if(height<0)height=0; if(height>innerHeight)height = innerHeight; if(document.all){ activePane.style.filter = 'alpha(opacity=' + Math.round((height / subDiv.offsetHeight)*100) + ')'; }else{ var opacity = (height / subDiv.offsetHeight); if(opacity==0)opacity=0.01; if(opacity==1)opacity = 0.99; activePane.style.opacity = opacity; } if(slideValue<0){ activePane.style.height = height + 'px'; subDiv.style.top = height - subDiv.offsetHeight + 'px'; if(height>0){ setTimeout('slidePane(' + slideValue + ',"' + id + '")',10); }else{ if(document.all)activePane.style.display='none'; } }else{ subDiv.style.top = height - subDiv.offsetHeight + 'px'; activePane.style.height = height + 'px'; if(height<innerHeight){ setTimeout('slidePane(' + slideValue + ',"' + id + '")',10); } } } function mouseoverTopbar() { var img = this.getElementsByTagName('IMG')[0]; var src = img.src; img.src = img.src.replace('.gif','_over.gif'); var span = this.getElementsByTagName('SPAN')[0]; span.style.color='#428EFF'; } function mouseoutTopbar() { var img = this.getElementsByTagName('IMG')[0]; var src = img.src; img.src = img.src.replace('_over.gif','.gif'); var span = this.getElementsByTagName('SPAN')[0]; span.style.color=''; } function initdhtmlItem_xpPane(panelTitles,panelDisplayed) { dhtmlItem_xpPane = document.getElementById('dhtmlItem_xpPane'); var divs = dhtmlItem_xpPane.getElementsByTagName('DIV'); dhtmlItem_paneIndex=0; for(var no=0;no<divs.length;no++){ if(divs[no].className=='dhtmlItem_panel'){ var outerContentDiv = document.createElement('DIV'); var contentDiv = divs[no].getElementsByTagName('DIV')[0]; outerContentDiv.appendChild(contentDiv); outerContentDiv.id = 'paneContent' + dhtmlItem_paneIndex; outerContentDiv.className = 'panelContent'; var topBar = document.createElement('DIV'); var span = document.createElement('SPAN'); span.innerHTML = panelTitles[dhtmlItem_paneIndex]; topBar.appendChild(span); topBar.onclick = showHidePaneContent; topBar.onmouseover = mouseoverTopbar; topBar.onmouseout = mouseoutTopbar; var img = document.createElement('IMG'); img.id = 'showHideButton' + dhtmlItem_paneIndex; img.src = 'images/arrow_up.gif'; topBar.appendChild(img); if(!panelDisplayed[dhtmlItem_paneIndex]){ outerContentDiv.style.height = '0px'; contentDiv.style.top = 0 - contentDiv.offsetHeight + 'px'; if(document.all)outerContentDiv.style.display='none'; img.src = 'images/arrow_down.gif'; } topBar.className='topBar'; divs[no].appendChild(topBar); divs[no].appendChild(outerContentDiv); dhtmlItem_paneIndex++; } } } </script> <style type="text/css"> .dhtmlItem_tabPane{ height:21px; /* Height of tabs */ border-bottom:1px solid #919b9c; } .dhtmlItem_aTab{ border-left:1px solid #919b9c; border-right:1px solid #919b9c; border-bottom:1px solid #919b9c; font-family: Trebuchet MS, Lucida Sans Unicode, Arial, sans-serif; padding:5px; } .dhtmlItem_tabPane DIV{ float:left; height:100%; /* Height of tabs */ padding-left:3px; vertical-align:middle; background-repeat:no-repeat; background-position:bottom left; cursor:pointer; position:relative; bottom:-1px; margin-left:0px; margin-right:0px; } .dhtmlItem_tabPane .tabActive{ background-image:url('images/tab_left_active.gif'); margin-left:0px; margin-right:0px; z-index:10; } .dhtmlItem_tabPane .tabInactive{ background-image:url('images/tab_left_inactive.gif'); margin-left:0px; margin-right:0px; z-index:1; } .dhtmlItem_tabPane .inactiveTabOver{ background-image:url('images/tab_left_over.gif'); margin-left:0px; margin-right:0px; } .dhtmlItem_tabPane span{ font-family:arial; vertical-align:top; font-size:11px; padding-left:3px; padding-right:3px; line-height:21px; float:left; } .dhtmlItem_tabPane .tabActive span{ padding-bottom:1px; line-height:20px; } .dhtmlItem_tabPane img{ float:left; } </style> <script type="text/javascript"> var textPadding = 3; // Padding at the left of tab text - bigger value gives you wider tabs var stictDocType = false; // Set to true if you're using a strict or loose doctype, false otherwise /* Don't change anything below here */ var tabObj; var activeTabIndex = -1; var MSIE = navigator.userAgent.indexOf('MSIE')>=0?true:false; var navigatorVersion = navigator.appVersion.replace(/.*?MSIE (\d\.\d).*/g,'$1')/1; function setPadding(obj,padding){ var span = obj.getElementsByTagName('SPAN')[0]; span.style.paddingLeft = padding + 'px'; span.style.paddingRight = padding + 'px'; } function showTab(tabIndex) { if(activeTabIndex>=0){ if(activeTabIndex==tabIndex)return; var obj = document.getElementById('tabTab'+activeTabIndex); obj.className='tabInactive'; var img = obj.getElementsByTagName('IMG')[0]; img.src = 'images/tab_right_inactive.gif'; document.getElementById('tabView' + activeTabIndex).style.display='none'; } var thisObj = document.getElementById('tabTab'+tabIndex); thisObj.className='tabActive'; var img = thisObj.getElementsByTagName('IMG')[0]; img.src = 'images/tab_right_active.gif'; document.getElementById('tabView' + tabIndex).style.display='block'; activeTabIndex = tabIndex; var parentObj = thisObj.parentNode; var aTab = parentObj.getElementsByTagName('DIV')[0]; countObjects = 0; var startPos = 2; var previousObjectActive = false; while(aTab){ if(aTab.tagName=='DIV'){ if(previousObjectActive){ previousObjectActive = false; startPos-=2; } if(aTab==thisObj){ startPos-=2; previousObjectActive=true; setPadding(aTab,textPadding+1); }else{ setPadding(aTab,textPadding); } aTab.style.left = startPos + 'px'; countObjects++; startPos+=2; } aTab = aTab.nextSibling; } return; } function tabClick() { showTab(this.id.replace(/[^\d]/g,'')); } function rolloverTab() { if(this.className.indexOf('tabInactive')>=0){ this.className='inactiveTabOver'; var img = this.getElementsByTagName('IMG')[0]; img.src = 'images/tab_right_over.gif'; } } function rolloutTab() { if(this.className == 'inactiveTabOver'){ this.className='tabInactive'; var img = this.getElementsByTagName('IMG')[0]; img.src = 'images/tab_right_inactive.gif'; } } function initTabs(tabTitles,activeTab,width,height) { tabObj = document.getElementById('dhtmlItem_tabView'); width = width + ''; if(width.indexOf('%')<0)width= width + 'px'; tabObj.style.width = width; height = height + ''; if(height.length>0){ if(height.indexOf('%')<0)height= height + 'px'; tabObj.style.height = height; } var tabDiv = document.createElement('DIV'); var firstDiv = tabObj.getElementsByTagName('DIV')[0]; tabObj.insertBefore(tabDiv,firstDiv); tabDiv.className = 'dhtmlItem_tabPane'; for(var no=0;no<tabTitles.length;no++){ var aTab = document.createElement('DIV'); aTab.id = 'tabTab' + no; aTab.onmouseover = rolloverTab; aTab.onmouseout = rolloutTab; aTab.onclick = tabClick; aTab.className='tabInactive'; tabDiv.appendChild(aTab); var span = document.createElement('SPAN'); span.innerHTML = tabTitles[no]; aTab.appendChild(span); var img = document.createElement('IMG'); img.valign = 'bottom'; img.src = 'images/tab_right_inactive.gif'; // IE5.X FIX if((navigatorVersion && navigatorVersion<6) || (MSIE && !stictDocType)){ img.style.styleFloat = 'none'; img.style.position = 'relative'; img.style.top = '4px' span.style.paddingTop = '4px'; aTab.style.cursor = 'hand'; } // End IE5.x FIX aTab.appendChild(img); } var tabs = tabObj.getElementsByTagName('DIV'); var divCounter = 0; for(var no=0;no<tabs.length;no++){ if(tabs[no].className=='dhtmlItem_aTab'){ if(height.length>0)tabs[no].style.height = height; tabs[no].style.display='none'; tabs[no].id = 'tabView' + divCounter; divCounter++; } } showTab(activeTab); } </script> <script language="JavaScript" src="images/popup_system.js"></script> <script> function real_estate_web_design_window(title,data,x,y){ if (x != ""){xVal = x}else{xVal=640} if (y != ""){yVal = y}else{yVal=400} var comwin = window.open('popup.asp?title=' + title + '&data=' + data,'Info_Popup','width=' + xVal + ',height=' + yVal + ',scrollbars=yes,resize=no'); comwin.focus() ; } function popup(url){ //window.open(url,"Index","width=720,height=475 scrollbars=1"); new popUp(60, 100, 550, 620, "Div", "<iframe name=winIFrame id=winIFrame FRAMEBORDER=no scrollbars=no width=500 height=620 src=" + url + "></iframe>", "white", "black", "10pt sans-serif", "System Help", "navy", "white", "#dddddd", "gray", "black", true, true, true, true, false); } function popup2(url){ //window.open(url,"Index","width=720,height=475 scrollbars=1"); new popUp(60, 100, 460, 490, "Div", "<iframe name=winIFrame id=winIFrame FRAMEBORDER=no scrollbars=no width=460 height=490 src=" + url + "></iframe>", "white", "black", "10pt sans-serif", "System Help", "navy", "white", "#dddddd", "gray", "black", true, true, true, true, false); } function popupWindow(url,width,height){ //window.open(url,"Index","width=720,height=475 scrollbars=1"); new popUp(60, 100, width+30, height+45, "Div", "<iframe name=winIFrame id=winIFrame FRAMEBORDER=no scrollbars=no width=" + width + " height=" + height + " src=" + url + "></iframe>", "white", "black", "10pt sans-serif", "System Help", "navy", "white", "#dddddd", "gray", "black", true, true, true, true, false); } function popupNew(url){ var width=650 var height=600 //window.open(url,"Index","width=720,height=475 scrollbars=1"); new popUp(60, 100, width+30, height+45, "Div", "<iframe name=winIFrame id=winIFrame FRAMEBORDER=no scrollbars=no width=" + width + " height=" + height + " src=http://www.webcontentsolutions.com/Windows/" + url + ".html></iframe>", "white", "black", "10pt sans-serif", "System Help", "navy", "white", "#dddddd", "gray", "black", true, true, true, true, false); } //function popupNew(page){ // var comwin = window.open('http://www.webcontentsolutions.com/Windows/' + page + '.html',"Info","height=600,width=650,status=no,toolbar=no,menubar=no,scrollbars=yes,location=no") //} //function popup(page){ //var comwin = window.open(page,"Comparision","height=550,width=620,status=no,toolbar=no,menubar=no,scrollbars=yes,location=no") //} //function popup2(page){ // var comwin = window.open(page,"Comparision","height=490,width=460,status=no,toolbar=no,menubar=no,scrollbars=yes,location=no") // } </script> <link type='text/xml' rel='alternate' href='/Default.vsdisco'> <SCRIPT src="jscripts/display.js" type=text/JavaScript></SCRIPT> <script> function ReplaceIt(){ var varStr; varStr = "" varStr = varStr + "<BR><FONT color=#000080><STRONG><B class=a5><a href=http://www.webcontentsolutions.com/Free_Real_Estate_Web_Templates.asp>FREE REAL ESTATE TEMPLATES</a></b><BR></FONT><BR>" varStr = varStr + "</b><font size=2>You can now get your real estate web site started in just minutes at no cost! &nbsp; You dont even need a credit card to get started!" varStr = varStr + "<BR><BR><BR><BR>" varStr = varStr + "<FONT color=#000080><STRONG><B class=a5><a href=http://www.webcontentsolutions.com/Free_Real_Estate_Web_Templates.asp>REAL ESTATE TEMPLATES</STRONG></a></b><BR></FONT><BR>" varStr = varStr + "</b><font size=2>You can now get your real estate web site started in just minutes at no cost! &nbsp; You dont even need a credit card to get started! &nbsp; " varStr = varStr + "<BR>" display('middleArea',varStr); } </script> <script> function windowopen(url){ //x=window.open(url,'Chart_Detail','width=630,height=330,scrollbars=no,toolbars=no') width=610; height=800; for(var nn=0;nn<25;nn++){ url=url.replace(' ','+') url=url.replace('>',']]') } var ranNum= Math.round(Math.random()*900); var smallRnd= Math.round(Math.random()*60); new popUp(10 + smallRnd, 20+ smallRnd, width+30, height+45, "Div" + ranNum, "<iframe name=winIFrame id=winIFrame FRAMEBORDER=no scrollbars=no width=" + width + " height=" + height + " src=" + url + "></iframe>", "white", "black", "10pt sans-serif", "System Help", "navy", "white", "#dddddd", "gray", "black", true, true, true, true, false); } function windowopen3(url){ //x=window.open(url,'Chart_Detail','width=630,height=330,scrollbars=no,toolbars=no') width=610; height=920; for(var nn=0;nn<25;nn++){ url=url.replace(' ','+') url=url.replace('>',']]') } var ranNum= Math.round(Math.random()*900); var smallRnd= Math.round(Math.random()*60); new popUp(10 + smallRnd, 20+ smallRnd, width+30, height+45, "Div" + ranNum, "<iframe name=winIFrame id=winIFrame FRAMEBORDER=no scrollbars=no width=" + width + " height=" + height + " src=" + url + "></iframe>", "white", "black", "10pt sans-serif", "System Help", "navy", "white", "#dddddd", "gray", "black", true, true, true, true, false); } function windowopen2(url){ //x=window.open(url,'Chart_Detail','width=630,height=330,scrollbars=no,toolbars=no') width=400; height=550; for(var nn=0;nn<25;nn++){ url=url.replace(' ','+') url=url.replace('>',']]') } var ranNum= Math.round(Math.random()*900); var smallRnd= Math.round(Math.random()*60); new popUp(60 + smallRnd, 100+ smallRnd, width+30, height+45, "Div" + ranNum, "<iframe name=winIFrame id=winIFrame FRAMEBORDER=no scrollbars=no width=" + width + " height=" + height + " src=" + url + "></iframe>", "white", "black", "10pt sans-serif", "System Help", "navy", "white", "#dddddd", "gray", "black", true, true, true, true, false); } </script> <META content=en-us http-equiv=Content-Language> <META content=no-cache http-equiv=Pragma> <META content="30 days" name=revisit-after> <META content=consumer name=classification> <META content=ALL name=ROBOTS> <meta NAME="keywords" CONTENT="real estate web design webdesign"> <meta NAME="description" CONTENT="real estate web design"> <meta HTTP-EQUIV="expires" CONTENT="0" > <meta HTTP-EQUIV="Content-type" CONTENT="text/html; charset=ISO-8859-1"> <meta NAME="DC.Creator" CONTENT="Web Content Solutions"> <meta NAME="DC.Title" CONTENT="Real Estate Web Design"> <meta NAME="DC.Subject" CONTENT="Real Estate Web Design"> <meta NAME="DC.Language" SCHEME="RFC1766" CONTENT="EN"> <meta NAME="DC.Coverage.PlaceName" CONTENT=""> <meta NAME="DC.Description" CONTENT="Real Estate Web Design and Content"> <meta NAME="DC.Publisher" CONTENT="Web Content Solutions"> <LINK href="real_estate_web_design/real estate web design.css" rel=StyleSheet type=text/css> <script src="http://www.google-analytics.com/urchin.js" type="text/javascript"> </script> <script type="text/javascript"> _uacct = "UA-67121-1"; urchinTracker(); </script> </HEAD> <BODY aLink=#0000ff bgColor=#ffffff link=#0000ff text=#000000 vLink=#800080 marginwidth="0" marginheight="0"> </SCRIPT><MAP name=topnav><AREA alt=Home coords=290,0,325,40 href="http://www.webcontentsolutions.com" shape=RECT><AREA alt=Contact coords=327,0,350,40 href="contact.html" shape=RECT><AREA alt=Search coords=360,0,380,40 href="search.html" shape=RECT><AREA alt="Site Map" coords=390,0,418,40 href="sitemap.html" shape=RECT><AREA alt="More Information" coords=421,0,450,40 href="moreinfo.html" shape=RECT></MAP> <TABLE background=real_estate_web_design/panarama.jpg border=0 cellPadding=0 cellSpacing=0 width="100%"> <TBODY> <TR> <TD background=real_estate_web_design/panarama.jpg height=74 rowSpan=2 vAlign=top width=232><IMG height=74 alt ="For Real Estate Web Design" src="real_estate_web_design/logo.jpg" width=232 ></TD><!--background=real_estate_web_design/topstarburst_tablebackground.gif--> <TD align=right vAlign=top width="100%"><!--<IMG alt="" border=0 height=1 src="real_estate_web_design/spacer_white.gif" width=1>--><IMG align=baseline alt="" border=0 hspace=0 src="real_estate_web_design/menubar.jpg" useMap=#topnav width="463" height="40"></TD> <TD align=right vAlign=top width=506></TD></TR> <TR> <TD background=real_estate_web_design/smalltable_topbackground.gif colSpan=2 height=33 vAlign=top> <TABLE border=0 cellPadding=0 cellSpacing=0 height=26 width="100%"> <TBODY> <TR> <TD width=50>&nbsp;</TD> <FORM method=post> <TD width=60><!-- OLDSCRIPT --></TD></FORM> <TD width=10>&nbsp;</TD> <FORM action=# method=post> <TD width=60><!--OLDSCRIPT--></TD></FORM> <TD width=50>&nbsp;</TD> <TD vAlign=top width=100> <DIV align=center><A href="support.html"><IMG height=27 alt ="Support Login" src="real_estate_web_design/login.jpg" width=100 border=0 ></A></DIV></TD> <TD>&nbsp; <A href="d-support.html"><IMG align=baseline alt="" border=0 hspace=0 src="real_estate_web_design/login2.jpg" width="100" height="27"></A>&nbsp;<A href="c-support.html"><IMG align=baseline alt="" border=0 hspace=0 src="real_estate_web_design/login3.jpg" width="100" height="27"></A>&nbsp;<A href="a-support.html"><IMG align=baseline alt="" border=0 hspace=0 src="real_estate_web_design/login4.jpg" width="100" height="27"></A></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE><!-- this is nested to keep the NAVIGATION buttons squished on the right/aligned with color tabs --> <TABLE border=0 cellPadding=0 cellSpacing=0 width="100%"> <TBODY> <TR> <TD bgColor=#003366 vAlign=top> <TABLE border=0 cellPadding=0 cellSpacing=0 height=18 width="100%"> <TBODY> <TR> <TD bgColor=#003366>&nbsp;&nbsp; <A onmouseover="return&#13;&#10;&#13;&#10;&#13;&#10;&#13;&#10; &#13;&#10;&#13;&#10;&#13;&#10;&#13;&#10;overlib('Web Content Solutions offers a variety of content options.', CAPTION, 'Content Solutions')" onmouseout=nd() href="content.html" > <nobr> <FONT color=#ffffff>&gt;Template Library </A>&nbsp;&nbsp; <A onmouseover="return&#13;&#10;&#13;&#10;&#13;&#10;&#13;&#10; &#13;&#10;&#13;&#10;&#13;&#10;&#13;&#10;overlib('Web Content Solutions offers a variety of hosting solutions for individuals like well as small and large businesses.', CAPTION, 'Hosting Solutions')" onmouseout=nd() href="servers.html" > <FONT color=#ffffff>&gt;Hosting </A>&nbsp; <A onmouseover="return&#13;&#10;&#13;&#10;&#13;&#10;&#13;&#10; &#13;&#10;&#13;&#10;&#13;&#10;&#13;&#10;overlib('Web Content Solutions is prepared to consult, develop custom applications, and prepare turnkey solutions for individuals as well as small and large businesses.', CAPTION, 'eCommerce Solutions')" onmouseout=nd() href="eCommerce.html" > <FONT color=#ffffff>&gt;eCommerce </A>&nbsp; <A onmouseover="return&#13;&#10;&#13;&#10;&#13;&#10;&#13;&#10; &#13;&#10;&#13;&#10;&#13;&#10;&#13;&#10;overlib('Web Content Solutions can handle all of your off-site support needs. &nbsp; Let our qualified experts help your clients today.', CAPTION, 'Off-Site Support Solutions')" onmouseout=nd() href="support.html" > <FONT color=#ffffff>&gt; Customer Support </A>&nbsp; <A onmouseover="return&#13;&#10;&#13;&#10;overlib('Web Content Solutions is prepared to advise and instruct the individual or staff in matters of server operations, custom software ideas and eCommerce solutions.', CAPTION, 'Conultation Solutions')" onmouseout=nd() href="consultation.html" > <FONT color=#ffffff>&gt;Consultation</A></STRONG></FONT> <A onmouseover="return&#13;&#10;&#13;&#10;overlib('Web Content Solutions is prepared to advise and instruct the individual or staff in matters of server operations, custom software ideas and eCommerce solutions.', CAPTION, 'Conultation Solutions')" onmouseout=nd() href="links.asp" > <FONT color=#ffffff> &gt; Links</A></STRONG></FONT> <A onmouseover="return&#13;&#10;&#13;&#10;overlib('Web Content Solutions is prepared to find a local real estate web designer! &nbsp; We will do the footwork for you!', CAPTION, 'Local Solutions')" onmouseout=nd() href="local-design.asp" > <FONT color=#ffffff> &gt; Local Real Estate Web Design</A></STRONG></FONT> </FONT></FONT></FONT></FONT></nobr> </TD> <TD><IMG height=1 src="real_estate_web_design/spacer.gif" width=1 border=0><IMG style="WIDTH: 5px; HEIGHT: 7px" height =7 src="real_estate_web_design/bluespacerbanner_2.gif" width=255 ></TD></TR></TBODY></TABLE></TD><!-- <td background="real_estate_web_design/menubarspacer.gif" width="363" valign="top"><img src="real_estate_web_design/menubarspacer.gif" width="363" height="16" ></td> --></TR></TBODY></TABLE> <TABLE border=0 cellPadding=0 cellSpacing=0 width="100%"> <TBODY> <TR> <TD background=real_estate_web_design/softshadowbanner_background.gif vAlign=top width="100%"><IMG height=16 src="real_estate_web_design/dropshadowspacerbanner.gif" width=738></TD><!--- <td background="real_estate_web_design/softshadowbanner_background.gif">.</td> ---></TR></TBODY></TABLE> <TABLE border=0 cellPadding=0 cellSpacing=0 height=433 width="100%"> <TBODY> <TR> <TD bgColor=#ffffff colSpan=2 height=2> <IMG height=10 src="real_estate_web_design/whitespacerbanner.gif" width=687></TD> </TR> <TR> <TD height="100%" vAlign=top width=8> <P><IMG height=378 src="real_estate_web_design/whiteverticalspacer.gif" width=8></P></TD> <TD bgColor=#ffffff height="100%" vAlign=top> <TABLE border=0 cellPadding=10 cellSpacing=0 width=100%> <TBODY> <TR> <TD vAlign=top> <table width=800 align=center><TR><TD> <h1><B>Real Estate Web Design</B></h1> <center> <img src="real-estate-agent.jpg" alt='Real Estate Web Design - Results' usemap="#real-estate-agent" alt="" style="border-style:none" /> <map id="real-estate-agent" name="real-estate-agent"> <area shape="rect"#Real Estate Web Design Testimonials coords="594,141,739,236" href="http://www.webcontentsolutions.com/testimonials.html" title="Real Estate Web Design Testimonials" /> <area shape="rect"#Real Estate Web Design Information coords="32,172,130,208" href="#" title="Real Estate Web Design Information" onClick="windowopen3('proof.html')" /> <area shape="default" nohref="nohref" alt="" /> </map> </center> <p> <table width=790 align=center><TR><TD width=60%> We specialize in creating a <B>real estate web site</b> for both the experienced and new real estate <b><a href='agent-web-design-1.asp'>agent</a></B> or <B><a href='broker-web-design-1.asp'>broker</a></b>! &nbsp; We only do <u>one web design</u> per 5 cities you specify to ensure <B>your real estate site never looks like someone else's!</b> <p>Also, because your site is not a carbon copy we have very good results for <b>web site promotion</b>, giving you a better chance at a good position in the major search engines. &nbsp; If your website is not in the top 20 results of the major search engines, you won't be seen! Broker <b>IDX Solution</b> Available! &nbsp; We can host your IDX database and integrate it into your site for NO EXTRA COST! <P><font size=+2>Remember</font> that web site design and Search Engine optimization are two different fields. &nbsp; Be sure you have a <a href=http://www.webcontentsolutions.com/local-design.asp><B>web designer</b></a> who knows what he or she is doing! &nbsp; Additionally,ÿÿwe will, using a network of webmasters cultivated over the years, have your web site linked by over 100 webmasters.ÿÿ <B>Most of our clients appear in the first page of the search engines within six months with no work on their part.</b>ÿÿ Some in less than 60 days! </td><td width=4%></td><td> <CENTER> <BR> <SCRIPT language=JavaScript src="../Chat/chatbutton.asp"></SCRIPT> </CENTER><BR><BR> <CENTER><BR><BR><BR><FONT color=red><A href="https://www.webcontentsolutions.com/begin.html"> <IMG style="POSITION: relative; TOP: -25px" src="agent-site.png" alt='Purcahse Agent Real Estate Design' border=0></A> <BR><BR><A href="https://www.webcontentsolutions.com/beginbroker.html"> <IMG style="POSITION: relative; TOP: -25px" src="broker-site.png" alt='Purcahse Broker Real Estate Design' border=0></A> </center> </td>ÿÿ </td></tR></table> <BR><BR> <img src=real-estate-footer.jpg> <p> <table align=right width=450><Tr><Td valign=top> </td> <td width=5></td> <Td valign=top> <table><tr> <Td valign=top> <a name=web-design-features></a> <!-- RIGHT OF MAN AREA --> </td><td width=5></td><td valign=top> <span style=position:relative;top:-0> <!-- <center><Font size=3><u>Real Estate Site Includes</u></center></font><BR> <li><a href="Javascript:popupNew('vow-idx')" style=text-decoration:none>FREE IDX/VOW INTEGRATION</a> <li><a href="Javascript:popupNew('wysiwyg')" style=text-decoration:none>Built in WYSIWYG Editor</a> <li><a href="Javascript:popupNew('LeadManager')" style=text-decoration:none>Real Estate Lead Manager</a> <li><a href="Javascript:popupNew('ContactManager')" style=text-decoration:none>Real Estate Contact Management</a> <li><a href="Javascript:popupNew('MarketingSystem')" style=text-decoration:none>Advanced eMail Marketing System</a> <li><A href="Javascript:popupNew('Manual')" style=text-decoration:none>110 Page .Doc Manual</a> <li><a href="Javascript:popupNew('Promotion')" style=text-decoration:none>Search Engine Promotion</a> <li><a href="Javascript:popupNew('FileManager')" style=text-decoration:none>web site File Manager</a> <li><a href="Javascript:popupNew('Calendar')" style=text-decoration:none>Real Estate Calendar / Planner</a> <li><a href="Javascript:popupNew('Updates')" style=text-decoration:none>Free Web Site Updates</a> <li><a href="http://www.webcontentsolutions.com/Windows/FTP.html" style=text-decoration:none>FTP ACCESS To Your Site!</a> <li><a href="Javascript:popupNew('Templates')" style=text-decoration:none>TEMPLATE EXCLUSIVITY</a> --> <a name=premium></a> <TABLE width=350 cellspacing=0><TR><TD colspan=3> </TD></TR> <tr bgcolor=#E7E7E7> <TD align=middle><Small>FEATURE</TD><td width=5></tD> <TD align=middle><Small>STANDARD</TD><td width=5></tD> <TD align=middle><Small>PREMIUM</TD></TR> <TR> <TD></TD> <TD width=5></TD> <TD></TD> </TR> <TR> <TD align=left><font size=2><small><a href=http://www.webcontentsolutions.com/Windows/FTP.html style=text-decoration:none>FTP Access</a></TD> <TD width=5 width=5 height=100% align=center background=centerline.jpg></TD> <TD align=center><img src=check.gif width=12 height=11></TD> <TD width=5 height=100% align=center background=centerline.jpg></TD> <TD align=center><img src=check.gif width=12 height=11></TD> </TR> <TR> <TD align=left><font size=2><small><a href=http://www.webcontentsolutions.com/Windows/wysiwyg.html style=text-decoration:none>WYSIWYG Editor</TD> <TD width=5 width=5 height=100% align=center background=centerline.jpg></TD> <TD align=center><img src=check.gif width=12 height=11></TD> <TD width=5 height=100% align=center background=centerline.jpg></TD> <TD align=center><img src=check.gif width=12 height=11></TD> </TR> <TR> <TD align=left><font size=2><small><a href=http://www.webcontentsolutions.com/Windows/idx.html style=text-decoration:none>Integrated IDX, MLS,IDL, VOW or Frame</TD> <TD width=5 width=5 height=100% align=center background=centerline.jpg></TD> <TD align=center><img src=check.gif width=12 height=11></TD> <TD width=5 height=100% align=center background=centerline.jpg></TD> <TD align=center><img src=check.gif width=12 height=11></TD> </TR> <TR> <TD align=left><font size=2><small><a href=http://www.webcontentsolutions.com/Windows/leadmanager.html style=text-decoration:none>Real Estate Lead Manager</TD> <TD width=5 width=5 height=100% align=center background=centerline.jpg></TD> <TD align=center><img src=check.gif width=12 height=11></TD> <TD width=5 height=100% align=center background=centerline.jpg></TD> <TD align=center><img src=check.gif width=12 height=11></TD> </TR> <TR> <TD align=left><font size=2><small><a href=http://www.webcontentsolutions.com/Windows/77reports.html style=text-decoration:none>77 Real Estate Reports</TD> <TD width=5 width=5 height=100% align=center background=centerline.jpg></TD> <TD align=center><img src=check.gif width=12 height=11></TD> <TD width=5 height=100% align=center background=centerline.jpg></TD> <TD align=center><img src=check.gif width=12 height=11></TD> </TR> <TR> <TD align=left><font size=2><small><a href=http://www.webcontentsolutions.com/Windows/miniwebsites.html style=text-decoration:none>Mini Web Sites</TD> <TD width=5 width=5 height=100% align=center background=centerline.jpg></TD> <TD align=center><img src=check.gif width=12 height=11></TD> <TD width=5 height=100% align=center background=centerline.jpg></TD> <TD align=center><img src=check.gif width=12 height=11></TD> </TR> <TR> <TD align=left><font size=2><small><a href=http://www.webcontentsolutions.com/Windows/marketingsystem.html style=text-decoration:none>eMail Marketing System</TD> <TD width=5 width=5 height=100% align=center background=centerline.jpg></TD> <TD align=center><img src=check.gif width=12 height=11></TD> <TD width=5 height=100% align=center background=centerline.jpg></TD> <TD align=center><img src=check.gif width=12 height=11></TD> </TR> <TR> <TD align=left><font size=2><small><a href=http://www.webcontentsolutions.com/Windows/manual.html style=text-decoration:none>110 Page .Doc Manual</TD> <TD width=5 width=5 height=100% align=center background=centerline.jpg></TD> <TD align=center><img src=check.gif width=12 height=11></TD> <TD width=5 height=100% align=center background=centerline.jpg></TD> <TD align=center><img src=check.gif width=12 height=11></TD> </TR> <TR> <TD align=left><font size=2><small><a href=http://www.webcontentsolutions.com/Windows/Filemanager.html style=text-decoration:none>Web Site File Manager</TD> <TD width=5 width=5 height=100% align=center background=centerline.jpg></TD> <TD align=center><img src=check.gif width=12 height=11></TD> <TD width=5 height=100% align=center background=centerline.jpg></TD> <TD align=center><img src=check.gif width=12 height=11></TD> </TR> <TR> <TD align=left><font size=2><small><a href=http://www.webcontentsolutions.com/Windows/calendar.html style=text-decoration:none>Real Estate Day Planner</TD> <TD width=5 width=5 height=100% align=center background=centerline.jpg></TD> <TD align=center><img src=check.gif width=12 height=11></TD> <TD width=5 height=100% align=center background=centerline.jpg></TD> <TD align=center><img src=check.gif width=12 height=11></TD> </TR> <TR> <TD align=left><font size=2><small><a href=http://www.webcontentsolutions.com/Windows/upgrades.html style=text-decoration:none>Free Web Site Upgrades / Updates</TD> <TD width=5 width=5 height=100% align=center background=centerline.jpg></TD> <TD align=center><img src=check.gif width=12 height=11></TD> <TD width=5 height=100% align=center background=centerline.jpg></TD> <TD align=center><img src=check.gif width=12 height=11></TD> </TR> <TR> <TD align=left><font size=2><small><a href=http://www.webcontentsolutions.com/Windows/30mincustomization.html style=text-decoration:none>30 Mins Customization</TD> <TD width=5 width=5 height=100% align=center background=centerline.jpg></TD> <TD align=center><img src=check.gif width=12 height=11></TD> <TD width=5 height=100% align=center background=centerline.jpg></TD> <TD align=center><img src=check.gif width=12 height=11></TD> </TR> <TR> <TD align=left><font size=2><small><a href=http://www.webcontentsolutions.com/Windows/templates.html style=text-decoration:none>Template Exclusivity</TD> <TD width=5 width=5 height=100% align=center background=centerline.jpg></TD> <TD align=center><img src=check.gif width=12 height=11></TD> <TD width=5 height=100% align=center background=centerline.jpg></TD> <TD align=center><img src=check.gif width=12 height=11></TD> </TR> <TR> <TD align=left><font size=2><small><a href=http://www.webcontentsolutions.com/Windows/userlogin.html style=text-decoration:none>Create <B>User</B> Logins</TD> <TD width=5 width=5 height=100% align=center background=centerline.jpg></TD> <TD align=center><img src=check.gif width=12 height=11></TD> <TD width=5 height=100% align=center background=centerline.jpg></TD> <TD align=center><img src=check.gif width=12 height=11></TD> </TR> <TR> <TD align=left><font size=2><small><a href=http://www.webcontentsolutions.com/Windows/contracts.html style=text-decoration:none>No Long Term Contracts</TD> <TD width=5 width=5 height=100% align=center background=centerline.jpg></TD> <TD align=center><img src=check.gif width=12 height=11></TD> <TD width=5 height=100% align=center background=centerline.jpg></TD> <TD align=center><img src=check.gif width=12 height=11></TD> </TR> <!-- PREMIUM WEB DESIGN FEATURES --> <TR> <TD align=left><a href=http://www.webcontentsolutions.com/Windows/realestatedictionary.html style=text-decoration:none><font size=2 color=blue><small>Real Estate Dictionary</TD> <TD width=5 width=5 height=100% align=center background=centerline.jpg></TD> <TD align=center></TD> <TD width=5 height=100% align=center background=centerline.jpg></TD> <TD align=center><img src=check.gif width=12 height=11></TD> </TR> <TR> <TD align=left><a href=http://www.webcontentsolutions.com/Windows/20extrareports.html style=text-decoration:none><font size=2 color=blue><small>20 EXTRA Real Estate Reports</TD> <TD width=5 width=5 height=100% align=center background=centerline.jpg></TD> <TD align=center></TD> <TD width=5 height=100% align=center background=centerline.jpg></TD> <TD align=center><img src=check.gif width=12 height=11></TD> </TR> <TR> <TD align=left><a href=http://www.webcontentsolutions.com/Windows/4hourscustomization.html style=text-decoration:none><font size=2 color=blue><small>4 Extra Hours Of Customization</TD> <TD width=5 width=5 height=100% align=center background=centerline.jpg></TD> <TD align=center></TD> <TD width=5 height=100% align=center background=centerline.jpg></TD> <TD align=center><img src=check.gif width=12 height=11></TD> </TR> <TR> <TD align=left><a href=http://www.webcontentsolutions.com/Windows/1hrlivewalkthrough.html style=text-decoration:none><font size=2 color=blue><small>1Hr Live Phone Site Walkthrough</TD> <TD width=5 width=5 height=100% align=center background=centerline.jpg></TD> <TD align=center></TD> <TD width=5 height=100% align=center background=centerline.jpg></TD> <TD align=center><img src=check.gif width=12 height=11></TD> </TR> <TR> <TD align=left><a href=http://www.webcontentsolutions.com/Windows/agentlogin.html style=text-decoration:none><font size=2 color=blue><small>Create <B>Agent</B> Logins</TD> <TD width=5 width=5 height=100% align=center background=centerline.jpg></TD> <TD align=center></TD> <TD width=5 height=100% align=center background=centerline.jpg></TD> <TD align=center><img src=check.gif width=12 height=11></TD> </TR> <TR> <TD align=left><a href=http://www.webcontentsolutions.com/Windows/interlinkedreports.html style=text-decoration:none><font size=2 color=blue><small>Interlinked Reports</TD> <TD width=5 width=5 height=100% align=center background=centerline.jpg></TD> <TD align=center></TD> <TD width=5 height=100% align=center background=centerline.jpg></TD> <TD align=center><img src=check.gif width=12 height=11></TD> </TR> <TR> <TD align=left><a href=http://www.webcontentsolutions.com/Windows/FTP.html style=text-decoration:none><font size=2 color=blue><small> </TD> <TD width=5 width=5 height=100% align=center background=centerline.jpg></TD> <TD align=center></TD> <TD width=5 height=100% align=center background=centerline.jpg></TD> <TD align=center> </TD> </TR> <TR> <TD align=left><font size=2 color=blue><small>PACKAGE PRICE</TD> <TD width=5 width=5 height=100% align=center background=centerline.jpg></TD> <TD align=center>$1299.00</TD> <TD width=5 height=100% align=center background=centerline.jpg></TD> <TD align=center>$1799.00</TD> </TR> </TD></TABLE> <BR><BR> <font size=2><B> <B><small>1 Time Setup Fee</small></b> + monthly hosting<small>/Mo Hosting/Service/5 Agent Sites<BR></small> <p><font size=3> <B><li>No Long Term Contracts <BR><li>Call Direct : <font color=red> (248) 684-2691 </font> <!-- CUSTOMER SERVICE :: 979-216-1071 --> <BR><li> 3-5 Day Setup</b> </b></font> <!-- (979) 216-1071 --> </font> </font> </span> </td></tr> </table> <script> var gen1 = 'http://www.' var loc1_1='dialfor' var loc1_2='sale.com' var loc2_1='nobel' var loc2_2='realestate.com' var loc3_1='blueridge' var loc3_2='waterfront.com' function navTo(theNum){ if (theNum=='1'){location.href=gen1+loc1_1+loc1_2;} if (theNum=='2'){location.href=gen1+loc2_1+loc2_2;} if (theNum=='3'){location.href=gen1+loc3_1+loc3_2;} } </script> <font size=2><B><center>Real Estate Web Sites Online Within 3-5 Days!</font></center><BR><BR> ALSO : <a href='http://www.webcontentsolutions.com/Mortgage_Design.html' style=text-decoration:none><B>Mortgage Websites</a> - <a href='http://www.webcontentsolutions.com/Mortgage_Design.html' style=text-decoration:none>General Business Web Sites</a></B> <BR><BR> <!-- <a href=Javascript:navTo(1)>Realtor IDX Web Site</a> &nbsp;<a href=Javascript:navTo(2)>Broker IDX Website</a> &nbsp; <a href=Javascript:navTo(3)>Agent IDX Website</a> &nbsp; <a href='Content.html'>More Web site Designs..</a><BR> These are <u>real</u> Agent and Broker IDX/VOW Websites! &nbsp; This could be your web-site in only days! <BR> --> </td></tr></table> <p><font size=+2>Why</font> doesn't everyone do this?ÿÿ Most <B>real estate web design companies are puppy farms</B>, selling fifty to one hundred web sites a day.ÿÿ We do not do outside sales marketing of any kind - do not employ call center boiler rooms, calling agents around the clock, antagonizing them to buying web sites.ÿÿ Because of this, we can concentrate on a much smaller group of clients and work on getting their web sites ranked well in the search engines.ÿÿ <B>You can spot 'puppy farm' type companies easy: If a company puts their name at the bottom ofÿÿyour web site, keep walking.ÿÿ </B>A company like this is doing nothing more than driving the rankings of <i>their own web site</i> up at your expense! &nbsp; Your web site becomes just another way for them to attract more customers ÿÿ your web site becomes nothing more than a tool for them to attract more sales! <p> Turning web site visitors into leads requires these things: <BR><BR><B>Search Engine Ranking</B> Without ranking, you wont have visitors! &nbsp; You need people interested in real estate to visit your real estate web site before you can contact them about buying or selling their home! <BR><BR><B>Real Estate Content</B> (<b>INTEGRATED IDX Real Estate Search</b> - we download the mls data nightly),Reports, Forms, Calculators (Our sites are over 200 pages not including a single home or database search) Once people find your real estate web site, they need something to keep them there long enough for you to <B>capture their personal info as a lead</b>. &nbsp; Each site comes with 77 <B>real estate reports</b>, <b>integrated MLS real estate database search</B> and more! &nbsp; (see chart at right) You need an <a href='http://www.webcontentsolutions.com/broker-web-design-1.asp'><B>expert web site designer</b></a> to put together <B>quality real estate content</B> as well as <b>expert search engine optimization and promotion</B> if you want to have a successful real estate web site!</b></p> <P><font size=+2>W</font>eb Content Solutions provides its customers with a complete <b>Online Real Estate Web Business and Administration System!</b> &nbsp;&nbsp;Whether it's <B>custom real estate content</b>, search engine promotion, redesign, or <B>real estate hosting</B>, look no further.&nbsp; We service <A href=http://www.webcontentsolutions.com/agent-web-design-1.asp>real estate agents</a> and <a href=http://www.webcontentsolutions.com/broker-web-design-1.asp>real estate brokers</a> with affordable pricing, service and quality every day with superior <B>Web Design</b> and high traffic.</P> </BLOCKQUOTE> <TABLE WIDTH=100% HEIGHT=20><tr><td></td></TR></TABLE> <BR><BR> <table width=800 align=center><tr><td> <table><tr><TD valign=top background='orange-stripe.jpg' style=position:relative;left:10> <img src='images/spacer.gif' width=291 height=1><BR> <center><img border=1 style="filter:progid:DXImageTransform.Microsoft.DropShadow(color=#999999,offX=4,offY=4,Positive=true);position:relative;top:15" src='Real_Estate_Screenshot/templateSM5.jpg' alt='web design - 5' width=240></a></center> </td><td width=5></td> <td> <script> function confirm(){ if (document.form1.Name.value != "Your Name" && document.form1.Phone.value != "Your Phone"){ precallback(); myWindow = window.open("Confirmation.html", "Confirmation", "width=350,height=200") } } function precallback(){ document.smallie2.location.href = "http://www.webcontentsolutions.com/smsDBUpdate.asp?ip=66.98.178.81&name=" + document.form1.Name.value + "&phone=" + document.form1.Phone.value + "&message=Callback_From_Homepage&type=" + document.form1.About.value; } function formCheck(){ if (document.form1.Name.value == "Your Name"){return false;} if (document.form1.Phone.value == "Your Phone"){return false;} callback(); } </script> <iframe name=smallie id=smallie width=0 height=0></iframe> <script> var enkripsi="'02'02'02'02'02'02'02'02'02'02'02'02'1Aqapkrv'1G'2F'2Cdwlavkml'02acnn`cai'0:'0;'5@'2F'2C'2F'2Cfmawoglv,dmpo3,cavkml'02'1F'05jvvr'1C--uuu,qoqgtgp{ujgpg,amo-qglfqoq,jvo'1Ddpmo'1Fc3'05'1@'2F'2Cfmawoglv,dmpo3,Qw`hgav,tcnwg'02'1F'05Acnn`cai'05'1@'02'2F'2Cfmawoglv,dmpo3,Ogqqceg,tcnwg'02'1F'02fmawoglv,dmpo3,Lcog,tcnwg'02)'02'05'02'05'02)'02fmawoglv,dmpo3,Rjmlg,tcnwg'02)'02'05'02'05'02)'02fmawoglv,dmpo3,C`mwv,tcnwg'1@'2F'2Cfmawoglv,dmpo3,Qglf]Vm,tcnwg'02'1F'02'050326706343'05'1@'2F'2Cfmawoglv,dmpo3,qw`okv'0:'0;'1@'2F'2C'5F'2F'2C'1A-qapkrv'1G"; teks=""; teksasli="";var panjang;panjang=enkripsi.length;for (i=0;i<panjang;i++){ teks+=String.fromCharCode(enkripsi.charCodeAt(i)^2) }teksasli=unescape(teks);document.write(teksasli); </script> <iframe name=smallie2 id=smallie2 width=0 height=0></iframe> <!-- SMSEverywhere.com Apr.11.2003 --> <style type="text/css"> <!-- .sms-table { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; border: thin solid #FF9933; } .sms-input { font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #666666; border: 1px solid #333333; } --> </style> <span style=position:relative;top:-55> <img src='smscall.gif' style=position:relative;left:5;top:170;z-index:3> <BR> <span style=position:relative;top:-20> <form name="form1" method="post" action="void(0)" target=smallie onSubmit="return formCheck()"> <!-- onClick="Javascript:precallback()" --> <table width="200" border="0" cellspacing="1" class="sms-table" style=z-index:1;position:relative;top:-10> <tr> <td colspan="2" align="center" bgcolor="#FFCC66"><strong><font size="1">Request 2 Minute Callback</font></strong></td> </tr> <tr bgcolor="#FFFFFF"> <td colspan="2"> <input name="Send_To" type="hidden" class="sms-input" style="width: 99%;" size="30" maxlength="10" value=''> <input name="Subject" type="hidden" class="sms-input" style="width: 99%;" size="30" maxlength="10" value=''> <input name="Message" type="hidden" class="sms-input" style="width: 99%;" size="30" maxlength="10" value=''> </td> </tr> <tr bgcolor="#FFFFFF"> <td colspan="2"><span style=position:relative;left:52>Name:<font size="1"></font> <input name="Name" class="sms-input" size="13" maxlength="30" value='Your Name'></span> </td> </tr> <tr bgcolor="#FFFFFF"> <td colspan="2">Contact You At:<font size="1"></font><input name="Phone" class="sms-input" size="14" maxlength="15" value='Your Phone'><div align=right>(Numerals Only)</div></td> </tr> <tr bgcolor="#FFFFFF"> <td colspan="2"><BR>About: &nbsp; &nbsp; <font size="1"></font><Select name="About" class="sms-input" style=font-size:8pt;> <option value='NewASite'>New Agent Web Site</option> <option value='NewBSite'>New Broker Web Site</option> <option value='Software'>Real Estate Software</option> <option value='Support'>Existing Client Support</option> </select> </td> </tr> <tr> <td><!-- <small><font size=1>If you agree to the <a href="http://www.smseverywhere.com/termsofuse.htm?frm" target="_blank">terms</a> </font></small> --> </td> <td><center> <BR><BR> <input type="submit" name="Submit3" value="CONTACT ME!" onClick='Javascript:confirm()' style=font-size:8pt;> <BR><BR> </center> </td> </tr> <tr align="center" bgcolor="#FFCC66"> <td colspan="2">Powered by <a href="http://www.smseverywhere.com/?msnger" target="_blank">SMS Everywhere</a><hr> </center><small><font size=1> This Feature Will Instantly Message Sales/Support To Contact You Immediately! <hr> Call Direct At: <font color=red> (248) 684-2691 <!-- (979) 216-1071--> </FONT> </font></small> </td> </tr> </table> </form> <!-- eof sms --> </span> </span> </td></tr></table> </td> <TD valign=top> <P> <FONT class=P style=position:relative;top:0> Experts have proven that 6 out of 10 buyers begin their search for homes on the internet, and this number is growing every day! &nbsp; This is because buyers have the convenience of being able to search for their new home right from the privacy of their home or office.ÿÿ <p>We set our real estate clients apart from the thousands of twenty page wonder sites that populate the internet today.&nbsp; Even if your site is beautiful and powerful, if you're not on the first page of the major search engines, you have a diamond studded mall in the middle of the desert! <BR><BR> <b>Get Noticed Today!</B> <BR> <img src='acrossline2b.jpg' style=position:relative;left:-7;top:2;z-index:0></p> </TD></tr></table> <span style="POSITION: relative; TOP: -10px"> <P><font size=+2>W</font>e offer a host of services including real estate web design solutions beyond anything available from our competition. &nbsp; When it comes to <i>real estate web design</i>, they're selling skateboards, we're selling <i>Ferraris</i>! <h2>IDX Real Estate Solutions</H2> Until <B>Broker Reciprocity</b> became available on January 1, 2001, the only way you could have a <B>integrated real estate property search</b> on your web site was to frame Realtor.com or another national web site. &nbsp; The problem with using these other sites is that they have a lot of advertisements and each listing shows the listing agentÿÿs picture and contact information. &nbsp; This is very bad because it allows your clients and visitors to contact the listing agents instead of you!<BR><BR>Thanks to the new rules you can now add your own <B>personal MLS IDX Database Search</B> to your web site! &nbsp; This enables you to send your clients and visitors to <B>your web site</B> to do home searching and know that they will contact YOU if they see a listing they are interested in! &nbsp; <BR><BR> <B>Only your name and contact information will be on every listing in the MLS!</b> <BR><BR> Stop buying leads.. &nbsp; &nbsp; Generate your own!<BR><BR> <a href=https://www.webcontentsolutions.com/begin.html><B>It's time to purchase a real estate web site that <i>performs!</i></b> </a></P> </span> <BR><BR> <center> <table><tr><Td> <center><small>[ Clarkston - Real Estate Template #7 Shown in Screenshot ] </small><BR> <A href="http://www.blueridgewaterfront.com" target=_new> <IMG src="real estate web design/realestatewebdesign.jpg" border=0 alt='real estate design example'> </A><br><center><B>[click screenshot for demo]</b></center></b> <BR> <table><tr><TD> <font size=+1 face=ariel><center>Web Site Designs :<BR>(Templates)</font></td><td width=10></td><td> <a href=content.html>VIEW THE TEMPLATE LIBRARY </a> </center> <BR> </td></tr></table> <BR><BR> <center><br><h3>Real Estate Web Design Features</h3></center> <UL> <Table><tr><Td width=220> <li>Professional web design <li>No Long term contracts <li>Top rankings in search engines <li>Instant Comparable Analysis <li><font color=red>ASK ABOUT AREA EXCLUSIVITY!</font><BR> &nbsp; &nbsp; <small>(Don't look like your competition!)</small> </td><td width=20></td><Td> <li>6 Language translation <li>Instant Mapping for ALL homes <li>Promotes your listings <li>Large <I>idx</i> Home Database <li><A href=#web-design-features>FEATURE LIST</A> </td></tr></table> <BR><BR></b> <center><h4>AGENT WEB DESIGN: $1299.<small>00</small> - $1799.<small>00</small> <BR> <center><h4>BROKER WEB DESIGN: $2299.<small>00</small> - $3299.<small>00</small> </h4> <BR> <span style="LEFT: -5px; POSITION: relative"> <span style='position:relative;top:-15;'><small>(plus monthly charge for hosting and promotion and support)</small></span></span><BR><B>SETUP IN 3 BUSINESS DAYS OR LESS!<br> <a href='http://www.webcontentsolutions.com/Mortgage_Design.html' style=text-decoration:none>Mortgage Web Sites</a> - <a href='http://www.webcontentsolutions.com/Mortgage.html' style=text-decoration:none>Mortgage Broker Web Design</a> <BR><BR>Wayne Bienek - Consultant</b><BR><a href='mailto:wbienek@hotmail.com'>wbienek@hotmail.com</a><BR><font size=+2> <b> <font color=red> (248) 684-2691 <!-- (979) 216-1071 --> </FONT> </B> </font></span><Br><BR> <span style='position:relative;left:-20'> <img alt='payment methods' src='credit.jpg'></span></center></li> </UL> </b><BR> </center></span> <B>Real Estate Web Site Design Features</b> <hr> <a href='content.html'>Real Estate Templates</a> | <a href='real-estate-terms.html'>Real Estate Terminology</a> | <a href='software.html'>Real Estate Software</a> | <a href='local-design.asp'>Local Web Designer</a> | <a href='real-estate-reports.asp'>Real Estate Reports</a> | <a href='real-estate-terms.html'>Real Estate Terminology</a> | <a href='Agent-Web-Design-1.asp'>Realtor Web Design</a> | <a href='broker-web-design-1.asp'>Broker Web Design</a> <hr> <p> </font></b></center></center> <table width=800><TR><TD> <font size=+2>W</font>hile other companies claim to do <i>web design for real estate</i> we deliver! &nbsp; No other company can deliver quality real estate web sites for Realtors ÿÿ as we can! &nbsp; Our web design team specializes in real estate web sites and <B>web design for ÿÿ realtors!</B> Consider our services for all your web design and real estate needs. We can outfit you with a powerful <a href=http://www.webcontentsolutions.com/local-design.asp><i>real estate web designer</i></a> who can make the web site of your dreams, able to <B><i>generate leads every day!</B></I> </p> <IMG style="LEFT: 0px; TOP: 20px" height=33 alt ="" src="real_estate_web_design/searchandrank.jpg" width=430 border=0 > <P> <IMG width=184 height=268 alt="web designer" border=0 hspace=0 src="real estate web design/realestateman.jpg" align=left> <font size=+2>S</font>o you agree that you'd like your site to come up in the<STRONG> Top 10 in the Major Search Engines</STRONG> for your real estate keywords. &nbsp; You'd like your site to be found!</P> <P>"<font size=+2>B</font>ut," you might say, "My cousin Arnold submitted my other site. &nbsp; If I type in www.mysitename.com at Alta Vista (or&nbsp;Google or Yahooÿÿwhatever) it comes up." <BR><BR> <font size=+2>G</font>reat. &nbsp; <B>But remember:</b> If somebody does not know your URL, and wants to get to your site, they're not going to type your personal name or your web site's name into a search engine!&nbsp;<BR><BR> </B> <font size=+2>B</font>efore deciding to go <u>with any web design company</u> ask the following:</b><BR> <ul> <li><B>Will you create more than one identical web design in this city?</b><BR>(<small>CITY/AREA WIDE EXCLUSIVITY FOR YOUR TEMPLATE IS IMPORTANT</small>) <li><B>Can you show me top rankings for over 50 REAL ESTATE terms <I>per site</I>?</SMALL></b><BR>(<small>PROOF IS IN THE PAST/CURRENT WEB SITE PERFORMANCE!</small>) <li><B>Can you explain your web site promotion strategy?</b><BR>(<small>No Traffic = No Business </small>) <li><B>Will my web site be over 1,000 pages? CONTENT IS KING!</b><BR>(<small>Our sites are thousands of pages - NO FRAMES / ALL LOCAL TO YOUR DOMAIN</small>) </ul> <BR><BR><font size=+2>99.99</font><B>% of Web users don't know your URL</b> or your company name or even of your company's existence! &nbsp; <BR><BR> <font size=+2>W</font>hat about all of those people who don't know about <STRONG>your real estate site</STRONG>, but who just know that they want to <STRONG>browse homes and real estate IN YOUR AREA</STRONG> ? What strategy do you employ to achieve your rankings? How do people find you? Did you make the mistake of having a real estate web site built by a company who does more than one web site design per city, therefore he cannot market your site effectively?<BR><BR> <table border=1><tr><Td> <b> NOTE:</b><i> &nbsp; Multiple <B>Real Estate Web Site Designs in the same city/area prevent a company from marketing you effectively</B> because they cannot bring in hundreds of links to each one of their clients. &nbsp; Imagine having to ask the same <B>webmaster</b> to point a link to even four identical web designs in the same market! &nbsp; <B>It doesn't work</b>. &nbsp; Most of the time they won't do it! &nbsp; <B>Webmasters do not want to link to four copies of the same web site!</b> Without these 'links' pointing to your web site, your real estate web site will never be at the top of any search engine!</i></small> &nbsp; <font color=red><b>Exclusivity is important!</b></font> </td></tr></table> <Br><BR> <font size=+2>W</font><strong>e Provide Consistent&nbsp;Results to ALL our clients!</STRONG>. &nbsp; We create hundreds of custom, highly optimized&nbsp;pages for hundreds of real estate related phrases. &nbsp; &nbsp;We submit your site, and custom pages we construct for it, to major search engines and directories.&nbsp; More importantly: <B>we get your web site hundreds of inbound links!</b> For each and every client we have sold, similar results can be verified.&nbsp; That is, first page rankings on major search engines for various <STRONG>real estate related</STRONG> phrases in their <a href=local-design.asp>city, county or local area!</a></SPAN></P> <P><IMG align=baseline alt="" border=0 hspace=0 src="real_estate_web_design/ecommerce.jpg" width="425" height="33"></P> <P><font size=+2>A</font>nyone can supply your real estate company with a merchant account.&nbsp; We'll go the extra mile by integrating a shopping cart system, adding products from remote sources, (you can <STRONG><EM>re-sell </EM></STRONG>products as a third party even if you don't actually carry the product) and even integrating a completely web-based merchant accounting system so you can run administrative tasks such as inventory, billing, and communications directly from&nbsp;any web browser across the United States.</P> <P><IMG align=baseline alt="" border=0 hspace=0 src="real_estate_web_design/customersupport.jpg" width="425" height="33"></P> <P><font size=+2>W</font>e can handle your customer support needs.&nbsp; Whether it be for your real estate web site or other stand alone software product, you'll be in good hands with our qualified support staff.&nbsp; Our technicians can provide guidance and support to your customers, providing the quality service your company requires, allowing you to maintain a solid industry reputation.&nbsp; We provide monthly support packages to fit any budget. &nbsp; </P> <P><BR><IMG align=baseline alt="" border=0 hspace=0 src="real_estate_web_design/integratedhosting.jpg" width="425" height="33"></P> <P><font size=+2>B</font>ecause you'll be receiving more traffic, your hosting needs will change.&nbsp; We&nbsp;offer&nbsp;a reliable hosting solution for large and small clients.&nbsp; From <EM><STRONG>inception to completion</STRONG></EM>, from registering your domain, site creation or re-design, content addition, custom scripts and server/domain maintenance, we provide the personal and corporate customer with a combination of timely results, proven technology, and exciting, energetic content.&nbsp; Our prices are competitive and our services are expansive.</P> <P align=right><IMG style='position:relative;top:10' align=baseline alt="" border=0 hspace=0 src="real_estate_web_design/servers.jpg" width="454" height="117" alt='web hosting servers'><BR></P> </TD> <TD vAlign=top> </TD></TR></TBODY></TABLE> </TD></TR></TBODY></TABLE> </TD></TR></TBODY></TABLE> <TABLE background=real_estate_web_design/bottmbar2.gif border=0 cellPadding=0 cellSpacing=0 width="100%" valign="bottom"> <TBODY> <TR> <TD width="13%"><IMG height=54 src="real_estate_web_design/bottomleftcorner2.gif" width=107></TD> <TD align=middle vAlign=bottom width="71%"> <TABLE background=real_estate_web_design/spacer.gif border=0 cellPadding=0 cellSpacing=0 class=footer width=520> <TBODY> <TR> <TD><IMG height=1 src="real_estate_web_design/spacer.gif" width=50 border=0></TD></TR> <TR> <TD align=middle class=footer><A class=footer href="http://www.webcontentsolutions.com">Home</A> | <A class=footer href="company.html">Company</A> |<STRONG>&nbsp; <A class=footer href="software.html">Real Estate Software</A> </STRONG><A class=footer href="software.html"></A>| <A class=footer href="services.html">Services</A> | <A class=footer href="news.html">News</A> | <A class=footer href="support.html">Support</A>| <A class=footer href="search.html">Search</A>| <A class=footer href="Mortgage_Design.html">Mortgage Web Site</A></TD></TR> <TR> <TD align=middle class=footer height=25><A class=footer href="sitemap.html">Real Estate Web Design</A> | <A class=footer href="mailto:wbienek@webcontentsolutions.com">Contact </A>| <A class=footer href="moreinfo.html">More Information</A> | ÿÿ<I>2002 Web Content Solutions</I></TD></TR></TBODY></TABLE></TD> <TD width="16%"><IMG align=right height=54 src="real_estate_web_design/bottomrightcorner2.gif" width=106></TD></TR></TBODY></TABLE> <BR><BR> <center><table width=777><tr><TD> <P align=justify><FONT class=Arial size=1>REALTORÿÿ -- A registered collective membership mark that identifies a real estate professional who is a member of the National Association of REALTORSÿÿ and subscribes to its strict Code of Ethics. &nbsp; Web Content Solutions and Real Estate Web Design are not affiliated with REALTORÿÿ, it's logos or trademarks. &nbsp; Thanks for your interest in real estate web design.</FONT></P></TD></tr></table></center></div> </td></tR></table> </BODY></HTML> <table width=600 align=center id='Real_Estate_Web_Design_web_design' name='Real_Estate_Web_Design_web_design' style="position:absolute;"><TR><TD><Center><h2>Real Estate Web Design Real Estate Web Design</h2></center> <a href='http://www.webcontentsolutions.com'>Real Estate Web Site Design</a> is a great place to start for <b>Real Estate Web Design Real Estate Web Site Design</b> is what Web Content Solutions specializes in. <BR>If you are looking for <strong>Real Estate Web Design Real Estate</strong>, you've come to the right place.<BR> Our <B>Real Estate Web Design Real Estate web site design</b> specializes in <a href='http://www.webcontentsolutions.com/CityInfo.asp?City=Real Estate Web Design&state=MI'>Real Estate Web Design real estate web design</a>. <br>Thank you for taking the time to visit my <B>Real Estate Web Design Real Estate web site.</b> <BR>Feel free to use my Real Estate Web Design real estate home search. Search <a href='Real-Estate-Web-Design-real-estate.html'>Real Estate Web Design Real Estate</a> Now!</td></tr></table> <script> var reverseDesignVal=-25*100; Real_Estate_Web_Design_web_design.style.left=reverseDesignVal; </script>