function PrinterFriendly()
{ 
	PrintWindow = window.open('', 'PrintWindow');
	PrintWindow.document.write('<HEAD><TITLE>' + document.title + '</TITLE><link href=\"/CSS/global.css\" rel=\"stylesheet\" type=\"text/css\" /></HEAD>');
	PrintWindow.document.write('<BODY BGCOLOR=\"white\">');
	PrintWindow.document.write('<div id=\"Content\"></div>');
	PrintWindow.document.getElementById('Content').innerHTML = this.document.getElementById('Content').innerHTML;
	PrintWindow.document.write('</BODY>');
	PrintWindow.document.write('</HTML>');
}