function show_printer_friendly(pHTML)
{

	var newWin  = window.open('','PrinerFriendlyVerison', 'height=600, width=800, toolbar=yes, location=yes, directories=yes, status=yes, menubar=yes, scrollbars=yes, resizable=yes');
	var newDoc  = newWin.document;

	var cssHTML = "<style> center, p, div {font-family: Verdana, Arial, Sans-serif; font-size:10px; } tr,td { font-family: Verdana, Arial, Sans-serif; font-size:12px; border:1px solid #D5D5EA} </style>";
	var year = new Date().getFullYear();
	var copyrightHTML = "<p class='copyright'><span class='gray-label-plain'>&copy; " + year + " Editorial Projects in Education</span></p>"; 
	var logoHTML = "<br /><div align='right'><img src='http://www.edweek.org/images/ewlogo-print.jpg' alt='Education week'></img></div><br /><hr /></center><br />"; 
	var startHTML = "<html><head><title>Printer friedly version</title>" + cssHTML + "</head><body><p>" + logoHTML + "</p>";
	var stopHTML = "<br /><hr /><center>" + copyrightHTML + "</center><br /><br /></body></html>";

	var htmlDOC = startHTML + pHTML + stopHTML;

	newDoc.open();
	newDoc.writeln(htmlDOC);
	newDoc.close();

	newDoc = null;
	newWin = null;
}

