function printPage(objname) {
	printWindow = window.open('','_blank','width=660,height=450,scrollbars=yes');
	printWindow.document.write("<head>");
	printWindow.document.write("<title>Observator</title>");
	printWindow.document.write("<style> BODY { margin:0px; padding:0px; font-family: \"Trebuchet MS\", Arial, Helvetica; font-size: 12px; color: #000000; line-height: 22px; }; P { font-family: \"Trebuchet MS\", Arial, Helvetica; font-size: 12px; color: #000000; line-height: 22px; }; LI { font-family: \"Trebuchet MS\", Arial, Helvetica; font-size: 12px; color: #000000; line-height: 22px; }; TD { font-family: \"Trebuchet MS\", Arial, Helvetica; font-size: 12px; color: #000000; line-height: 22px; };  H2 { font-family: \"Trebuchet MS\", Arial, Helvetica; font-size: 24px; color: #000000; margin: 0px 0px 0px 0px; }; .autor { font-family: \"Trebuchet MS\", Arial, Helvetica; font-size: 12px; color: #000000; margin: 0px 0px 10px 0px; }</style>");
	printWindow.document.write("</head>");
	printWindow.document.write("<body><table height=100% width=100% cellpadding=0 cellspacing=2>");
	printWindow.document.write("<tr><td height=10><input type='button' id='prnt_button' value='Print' style='font-family: Tahoma; margin-left: 10px; margin-top: 5px; font-size: 11px; font-weight: bold;' onClick=\"document.getElementById('prnt_button').style.display='none'; document.getElementById('hr1').style.display='none'; window.print(); document.getElementById('prnt_button').style.display=''; document.getElementById('hr1').style.display='';\">");
	printWindow.document.write("<HR id='hr1' size=1 color='#000000'></td></tr><tr><td valign=top><div id='document' style='width: 620px; background: ;'><div id='principal'><div id='continut' style='width: 620px; background: ;'><div id='sectiune_principal' style='width: 620px; background: ;'><div id='articol_full' style='width: 620px; background: ; border:0px;'>");
	printWindow.document.write(document.getElementById("content_for_print").innerHTML);
	printWindow.document.write("</div></div></div></div></div></td></tr></table>");
	printWindow.document.write("</body>");
	if(navigator.appName == "Microsoft Internet Explorer") {
		printWindow.location.reload();
	}
}