/*
  Show an advertisement

  - Goto a text box > Ctrl-T

    then add the following code...

      <script language="javascript"  src="http://www.topforsalebyowner.com/ads/file.js"></script>

  - Build the string to output - and then output it.

*/

var str = '';
    str += '<TABLE ID="Table1" BORDER=1 CELLSPACING=0 CELLPADDING=5 WIDTH=160 bordercolor="#E7E7B7">';
    str += '    <TR>';
    str += '        <TD BGCOLOR="#A7A7A7" HEIGHT=9>';
    str += '            <P ALIGN=CENTER><FONT COLOR="#FFFFFF" SIZE="-1"';
    str += '            FACE="Arial,Helvetica,Geneva,Sans-serif,sans-serif">';
    str += '            <B>Sponsored Links</B></FONT><B></B></P>';
    str += '        </TD>';
    str += '    </TR>';
/*
**********************************

    1st Advertisement

**********************************
*/
    str += '    <TR>';
    str += '        <TD BGCOLOR="#FFFFFF">';

    str += '            <P ALIGN=LEFT><a href=';

    str += '            "http://www.freehometrends.com"'; /* <------------------- */

    str += '            TARGET="aaa">';

    str += '            <IMG SRC=';

    str += '            "http://www.topforsalebyowner.com/w10000006/pics/w10000006.jpg"'; /* <---------- */

    str += '            BORDER=0 ALIGN="left">';

    str += '            </a></P>';
    str += '        </TD>';
    str += '    </TR>';
/*
**********************************

   End of Advertisement

**********************************
*/
    str += '</TABLE>';

document.write(str);

