function printpage(id){ 
	 var head = "<html><head><STYLE text='html/css'>div{float:left;}</STYLE></head><body> <table>";
	 var body = document.getElementById( id ).innerHTML;
	 var foot = "</table> </body></html>";

	 my_window = window.open('','','');
	 my_window.document.write(head + body + foot);
	 my_window.print();
}