function ShowFeaturedProperties()
{
   document.write( "<DIV style='position: absolute; left: 775px; top: 20px; -index: 1;'>" );

//restore this block to reenable Featured Property section
//   document.write( "<TABLE cellpadding='0', cellspacing='5', class='features', width='200'>" );
//
//   document.write( " <TR> " );
//   document.write( "<TD><B>Featured Property</B></TD>" );
//   document.write( "</TR>" );
//
//   FeaturedPropertyLine( "http://glarmls.com/GLARReports/Media/1134551_150832.jpg", "1906 frame farmhouse with 2.2 acres near Mt. Washington. 1,563 sq ft. $159,500." );
//
//   document.write( "</TABLE>" );
//   document.write( "</DIV>" );
//
//
//   document.write( "<DIV style='position: absolute; left: 775px; top: 275px; -index: 1;'>" );
//end of Featured Property block

   document.write( "<TABLE cellpadding='0', cellspacing='5', class='features', width='200'>" );

   document.write( " <TR> " );
   document.write( "<TD><B>Recent Older Home Sales</B></TD>" );
   document.write( "</TR>" );

   document.write( " <TR> " );
   document.write( "<TD>We represented the buyer, seller, or both in the sale of the older homes shown below.  Although these houses are no longer for sale, similar properties are available.</TD>" );
   document.write( "</TR>" );

   document.write( " <TR> " );
   document.write( "<TD></TD>" );
   document.write( "</TR>" );

   FeaturedPropertyLine( "http://glarmls.com/GLARReports/Media/1104890_093125.jpg", "1830's Federal" );
   FeaturedPropertyLine( "http://glarmls.com/GLARReports/Media/1062621_224305.jpg", "1860 Greek Revival" );
   FeaturedPropertyLine( "http://glarmls.com/GLARReports/Media/1144578_094940.jpg", "1870's farmhouse" );
   FeaturedPropertyLine( "http://glarmls.com/GLARReports/Media/1167565_115454.jpg", "1925 Craftsman bungalow" );
   FeaturedPropertyLine( "http://glarmls.com/GLARReports/Media/1141493_102100.jpg", "1941 Cape Cod" );
   FeaturedPropertyLine( "http://glarmls.com/GLARReports/Media/1078418_095502.jpg", "1950's expanded ranch" );
   
   document.write( "</TABLE>" );
   document.write( "</DIV>" );
}

function FeaturedPropertyLine(ImageFull, Info)
{
   document.write( "<TR>" );
   document.write( "<TD><a href='" + ImageFull + "' TARGET='blank'><img width=150, src='" + ImageFull + "'></A></TD>" );
   document.write( "</TR>" );

   document.write( "<TR>" );
   document.write( "<TD>" + Info + "<BR>");
   document.write( "</TR>" );
}

