The featured property viewer shows one random property on page load. There are two methods to create a property viewer; by agent/office ID or by saved search (below).

Property viewer example.
Site Searches Featured Property Viewer
load_domain_search (required): ID or name from your saved site search. This appears after the last / in the URL.
Examples:
http://search.yourdomain.com/results/1234 - the load_domain_search value is 1234
http://search.yourdomain.com/results/raleigh_homes_for_sale - the load_domain_search value is raleigh_homes_for_sale
<script src="http://search.yourdomain.com/featured-search-viewer.php?load_domain_search=raleigh_homes_for_sale" type="text/javascript"></script>
->You can also find the script on the individual Site Search admin page so you don't need to build it manually.
Agent or Office Featured Property Viewer
type (required): agent|office
value (required): agent or office ID
Examples:
<script src="http://search.yoursite.com/featured-viewer.php?type=agent&value=R12345" type="text/javascript"></script>
The above script will show a random featured property from the agent with an ID of R12345.
->You can generate this script on the Search Information page in your admin panel.
Property Organizer Featured Viewer
This is the old method of implementing a property viewer. If you have saved a search in your property organizer and do not want to import it into your site searches, you can use the below method to implement a property viewer. This script accepts one variable.
load_search (required): ID or name from your property organizer search. This appears after the last / in the URL.
Examples:
http://search.yourdomain.com/results/5678 - the load_search value is 5678
http://search.yourdomain.com/results/headingham_150k-300k - the load_search value is headingham_150k-300k
<script src="http://search.yourdomain.com/featured-search-viewer.php?load_search=5678" type="text/javascript"></script>