// JavaScript Document

function go()
{
	var a = window.open('','','width=810,height=800');
	a.document.open("text/html");
	a.document.write ("<link href='style4.css' rel='stylesheet' type='text/css' />");
	a.document.write(document.getElementById('print').innerHTML);
	a.document.close();
	a.print();
}	
