function printIt(foo){

	var a = window.open('','','width=600,height=500 scrollbars=1');

	a.document.open("text/html");

	a.document.write(document.getElementById(foo).innerHTML);

	a.document.write("<script type='text/javascript'>")

	a.document.write("setTimeout('self.close();',1000);");

	a.document.write("</script>");

	a.document.close();

	a.print();

}