//print a div
function go(name)
{
	var a = window.open('','','width=300,height=300');
	a.document.open("text/html");
	a.document.write(document.getElementById(name).innerHTML);
	a.document.close();
	a.print();
	a.window.close();
}