function printerFriendlyPage(copy)
{
	child = window.open('printer_friendly.php');
	child.document.writeln("<html>");
	child.document.writeln("<head>");
	child.document.writeln("<link rel=\"stylesheet\" type=\"text/css\" href=\"printer_friendly.css\">");
	child.document.write("<title>");
	child.document.write("Printer Friendly Page");
	child.document.writeln("</title>");
	child.document.writeln("</head>");
	child.document.writeln("<body>");
	child.document.writeln("<img src=\"images/forum_logo.jpg\" />");
	child.document.writeln("<br />");
	child.document.writeln("P.O. Box 1036<br />");
	child.document.writeln("1400 Forum Boulevard<br />");
	child.document.writeln("Columbia, MO 65205<br />");
	child.document.writeln("P: 573.446.5500<br />");
	child.document.writeln("F: 573.446.5050<br />");
	child.document.writeln("<br />");
	child.document.writeln(copy);
	child.document.writeln("</div>");
	child.document.writeln("</body>");
	child.document.writeln("</html>");
	child.document.close();
}