// JavaScript Document
function goprint()
{
	var a = window.open('','','width=500,height=300');
	a.document.open("text/html");
	a.document.write(document.getElementById('printarea').innerHTML);
	//a.document.write(document.getElementById('printarea2').innerHTML);
	a.document.close();
	a.print();
}


