// JavaScript Document
function print()
{
	var a = window.open('','','width=600,height=1200');
	a.document.open("text/html");
	a.document.write(document.getElementById('foo').innerHTML);
	a.document.close();
	a.print();
}


