<!-- This script may be freely distributed. -->
<!-- as long as these headers are left in place. -->

<!-- Momp's Web Design -->
<!-- http://www.mompswebdesign.com -->

var gAutoPrint = true; // Flag for whether or not to automatically call the print function

function printFriendly()
{
	if (document.getElementById != null)
	{
		var html = '<HTML>\n<HEAD><link href=http://www.fsalaw.com/includes/styles-print.css rel=stylesheet media=all type=text/css></style>\n';
		
		
		html += '\n</HE' + 'AD>\n<BODY style="FONT-WEIGHT: normal;FONT-SIZE: 12px;FONT-FAMILY: Arial, Verdana, Tahoma, Helvetica, sans-serif;TEXT-DECORATION: none;line-height: 18px;"><table width=100% border=0 cellpadding=0 cellspacing=0><tr><td width=306 valign="top"><a href=index.php><img src=images/logo.jpg width=306 height=79 border=0></a></td><td valign=top><div align=right><p><font face=Arial, Verdana, Helvetica, sans-serif size=2><strong>Friedman, Schuman, Applebaum, Nemeroff & McCaffery, P.C.</strong><br>101 Greenwood Avenue, Fifth Floor<br>Jenkintown, Pennsylvania 19046-2636<br>Phone 215-635-7200 | Fax 215-635-7212<br>www.fsalaw.com</font></p></div></td><td width=10></td></tr></table><br><Br>\n';

html += '<table width="100%" border="0" cellspacing="5" cellpadding="5"><tr><td valign="top">\n';
	
	var printPageElem = document.getElementById("printFriendly");

		if (printPageElem != null)
		{
				html += printPageElem.innerHTML;
		}
		else
		{
			alert("Could not find the printReady section in the HTML");
			return;
		}
		
html += '</td><td valign="top">\n'
	
	var printPageElem = document.getElementById("printFriendly2");

		if (printPageElem != null)
		{
				html += printPageElem.innerHTML;
		}
		else
		{
			alert("Could not find the printReady2 section in the HTML");
			return;
		}	
		
html += '<p>\n'
		
	var printPageElem = document.getElementById("printFriendly3");

		if (printPageElem != null)
		{
				html += printPageElem.innerHTML;
		}
		else
		{
			alert("Could not find the printReady3 section in the HTML");
			return;
		}
		
html += '</td></tr></table>\n'
			
		html += '\n</BO' + 'DY>\n</HT' + 'ML>';
		
		var printWin = window.open("","printFriendly");
		printWin.document.open();
		printWin.document.write(html);
		printWin.document.close();
		if (gAutoPrint)
			printWin.print();
	}
	else
	{
		alert("Sorry, the printer friendly feature works\nonly in javascript enabled browsers.");
	}
}

