// JavaScript Document

function Clickheretoprint()
{ 
  var disp_setting="toolbar=yes,location=no,directories=yes,menubar=yes,"; 
      disp_setting+="scrollbars=yes,width=676, height=600, left=100, top=25"; 
  var content_vlue = document.getElementById("print_content").innerHTML;
  var content_vlue2 = document.getElementById("print_content2").innerHTML; 
  
  var docprint=window.open("","",disp_setting); 
   docprint.document.open(); 
   docprint.document.write('<html><head><title>The Law Offices of Diana D. Parker - PRINTER FRIENDLY VERSION</title>'); 
   docprint.document.write('</head><body onLoad="self.print()"><table height=948><tr><td valign=top>');          
   docprint.document.write('<img src="images/law-offices-diana-parker-neg.jpg" border=0><font face="Tahoma, Arial, sans-serif">');
   docprint.document.write(content_vlue);
   docprint.document.write('<br><br>');
   docprint.document.write(content_vlue2);
   docprint.document.write('</font></td></tr><tr><td valign=bottom><font face="Tahoma, Arial, sans-serif">');
   docprint.document.write('<center>162 East 80th Street<br />New York, New York 10075 <br />Phone: 212-628-5566<br />Fax: 646-349-2030<br><a href=mailto:info@dianaparkerlaw.com>info@dianaparkerlaw.com</a>');
   docprint.document.write('</center></font></td></tr></table></body></html>');  
   docprint.document.close(); 
   docprint.focus(); 
}

