/*javascript:print_me()*/
function print_me(){
	
	var a = window.open('','Ontario Neurotrauma Foundation','scrollbars=yes,width=450,height=300');
	a.document.open("text/html");
	
	a.document.write('<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />');
	a.document.write('<STYLE type="text/css">@import "print.css";</style>');
	a.document.write('</head><body>');
	a.document.write('<img src="images/onflogo.jpg" />');
	a.document.write(document.getElementById('main').innerHTML);
	a.document.write('<div id="footer"> Copyright 2008 © ONF.org - All rights reserved </div>');
	a.document.write('</body></html>');
	a.document.close();
	a.focus();
	a.print();
	a.close()

}