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="700" background="ffffff" cellpadding="0" cellspacing="0" border="0"><tr><td>');
	nw.document.write('<table width="100%" background="ffffff" cellpadding="0" cellspacing="0" border="0"><tr><td bgcolor="#ffffff"><img src="images/babycentersiofok.jpg" width="206" height="69" border="0" /></td></tr><tr><td>');
	if (document.getElementById(elementid).nodeName == 'TABLE') nw.document.write('<table background="ffffff" 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();
}
