function printContent(elementid) {
	if (elementid==undefined) elementid = 'printthis';
	nw = window.open();
	nw.document.write('<html><head><title>');
	nw.document.write(document.title);
	nw.document.write('</title><link href="print.css" rel="stylesheet" type="text/css"></head>');
	nw.document.write('<body onLoad="window.print()">');
	nw.document.write('<table width="600" cellpadding="0" cellspacing="0" border="0"><tr><td>');
	nw.document.write('<table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td>');
	if (document.getElementById(elementid).nodeName == 'TABLE') nw.document.write('<table width="100%" cellpadding="0" cellspacing="0" border="0">');
	nw.document.write(document.getElementById(elementid).innerHTML);
	if (document.getElementById(elementid).nodeName == 'TABLE') nw.document.write('</table>');
	nw.document.write('</td></tr></table>');
	nw.document.write('</td></tr></table>');
	nw.document.write('</body></html>');
	nw.document.close();
}