<!--
function frw_print()
{
var a = window.open('','','scrollbars=yes,width=600,height=600,resizable');
	a.document.open("text/html");
	a.document.write(document.getElementById('content').innerHTML);
	a.document.write(document.getElementById('footlog').innerHTML);
	a.document.close();
	a.print();
}
//-->