//
//   propertyList
//
//   This file contains controls for the property list page.
//
//

function record(x) {
    document.write("<tr>") ;
    document.write('    <td width="35%" height="167" valign="middle" align="center">') ;
    document.write('         <a href="' + propertyList[x].link + '">') ;
    document.write('         <img border="5" src="' + propertyList[x].picture + '" width="300" height="200">') ;
    document.write('         </a>') ;
    document.write('    </td>') ;
    document.write('    <td width="65%" height="167" valign="top">') ;
    document.write('    <table border="0" width="100%" bgcolor="#CECF9C">') ; // color was#669999
    document.write('        <tr>') ;
    document.write('            <td width="30%" valign="top" align="left"></td>') ;
    document.write('            <td width="40%">') ;
    document.write('                <span class="style1"><center><b>$' + propertyList[x].price + '</b><br>') ;
    document.write('                   ' + propertyList[x].city + ',' + propertyList[x].state + '<br>') ;
    document.write('                   ' + propertyList[x].bed_bath + '<br>') ;
    document.write('                </center></span>') ;
    document.write('            <td width="30%" valign="top" align="right">') ;
    document.write('            </td>') ;
    document.write('        </tr>') ;
    document.write('        <tr>') ;
    document.write('            <td width="100%" valign="top" height="130" colspan="3"><span class="style1"><b>' + propertyList[x].street + '</b><br>') ;
    document.write('                ' + propertyList[x].comment ) ;
    document.write('                ') ;
    document.write('                ' + '<br><br><center><font color=\"brown\"><b>') ;

    if ((propertyList[x].virtualLink != "") && (propertyList[x].virtualLink != "virtual")) {
        document.write('<a href="' + propertyList[x].virtualLink + '" target="_blank">') ;
        document.write('See a Virtual Tour!!! </a>') ;
        document.write('<a href="' + propertyList[x].virtualLink + '" target="_blank">') ;
        document.write('<img src="images/generic/VirtualTour_15x15.gif" border="0" width="15" height="15"></a>') ;
    }
    document.write('</b></font></center>') ;
    document.write('            </span></td>') ;
    document.write('        </tr>') ;
    document.write('        <tr>') ;
    document.write('            <td width="30%"><span class="style1">'+ propertyList[x].size + '</span></td>') ;
    document.write('            <td width="40%"></td>') ;
    document.write('            <td width="30%">') ;
    document.write('                <p align="right"><span class="style1">MLS #' + propertyList[x].MLSid + ' </span>') ;
    document.write('            </td>') ;
    document.write('        </tr>') ;
    document.write('    </table>') ;
    document.write('    </td>') ;
    document.write('</tr>') ;

}



