Here is a quick way to get the featured listings on your web site. You can use it vertically or horizontally by adjusting the main div width and the line breaks. I set the image width at 100px you can adjust that, you don't need to put a height in. The listing will open in a new window.
Code:
<script language="javascript">
<!--
function openWindow(url)
{
var w = window.open (url, "win", "height=600,width=625,location,menubar,resizable,scrollbars,status,toolbar");
}
-->
</script>
<style type="text/css">
<!--
img {width: 100px;}
-->
</style>
<div style="padding: 5px 0pt; background-color: rgb(187, 201, 211); margin: 10px; width:125px;text-align:center;">
<h4>Featured Listings</h4>
<div style=""><span style="">Original 2 Story Eichlers</span><br /><img src="http://www.homeseekers.com/bareis/addl_picts/20539315-1.jpg" border="1">
<br />
<input type="button" value="View Listing" onclick="openWindow('http://www.searchpoint.net/detail.asp?_account=idd&_em=1&_org_id=bareis&mls_property_id=20539315&_sponsor_org_id=bareis&_agent_public_id=D328062&_sponsor_office_id=ALASS');">
</div>
<div style=""><span style="">Relocate</span><br /><img src="http://www.homeseekers.com/bareis/addl_picts/20539251-1.jpg" border="1">
<br />
<input type="button" value="View Listing" onclick="openWindow('http://www.searchpoint.net/detail.asp?_account=idd&_em=1&_org_id=bareis&mls_property_id=20539251&_sponsor_org_id=bareis&_agent_public_id=D328062&_sponsor_office_id=ALASS');">
</div>
<div style=""><span style="">Luxury Living<br /></span><img src="http://www.homeseekers.com/bareis/addl_picts/20600495-1.jpg" border="1">
<br />
<input type="button" value="View Listing" onclick="openWindow('http://www.searchpoint.net/detail.asp?_account=idd&_em=1&_org_id=bareis&mls_property_id=20600495&_sponsor_org_id=bareis&_agent_public_id=D328062&_sponsor_office_id=ALASS');">
</div>
You can put the code directly on the home page but I think it would be better to put the code in an external file and call it with php or asp. That way you can make changes without having to disturb the home page. When you update the listings all you need to change is the mls # in the image and listing view and any of the descriptive text.
Code:
<?php
include ("features.php")
?>
A main reason why I recommend open-realty is that all the functions that a Realtor would need for a web site are built in. You can use them when you need them without having to resort to custom coding or a major upgrade.