  function PrintDetails()
  {
    var pw = window.open('about:blank', '_new');
    pw.document.open();
    pw.document.write('<html><head><link rel="stylesheet" href="realestate.css" type="text/css"></head><body onload="window.print();window.close();">');
    pw.document.write('<table width="100%" cellpadding="0" cellspacing="0">'); 
    pw.document.write('  <tr>');
    pw.document.write('    <td style="vertical-align:top; text-align:left; padding-left:5px;">');
    pw.document.write('      <div>');
    pw.document.write('      <b>');
    pw.document.write('      <font color="#050505">');
    pw.document.write('      <big><big><b>Steve Dickie</b></big></big>, Broker<br>');
    pw.document.write('      <small>');
    pw.document.write('      658 Berford Street, Wiarton, ON, N0H 2T0<br>');
    pw.document.write('      Office: 519-534-5413<br>');
    pw.document.write('      Cell: 519-270-2442<br>');
    pw.document.write('      Fax: 519-534-5414<br>');
    pw.document.write('      email: steve@stevedickie.com</font>');
    pw.document.write('      </small>');
    pw.document.write('      </font>');
    pw.document.write('      </b>');
    pw.document.write('      </div>');
    pw.document.write('    </td>');
    pw.document.write('    <td style="vertical-align:top;">');
    pw.document.write('      <img src="images/header.jpg" style="margin-top: 0px; margin-left: 5px; vertical-align:top;" title="Royal LePage RCR Realty, Brokerage" alt="Royal LePage RCR Realty, Brokerage" border="0">');
    pw.document.write('    </td>');
    pw.document.write('  </tr>');
    pw.document.write('</table>');
    pw.document.write(document.getElementById('idPrintArea').innerHTML);
    pw.document.write('</body></html>');
    pw.document.close();
  }


