function print_text()
{
	var a = window.open('','','scrollbars=1, width=500, height=500');
	a.document.open("text/html");
	a.document.write('<div style="font-size:11px; font-family:Arial;"><strong>' + document.getElementById('article_title').innerHTML + '</strong><br><br>' + document.getElementById('article_text').innerHTML + document.getElementById('url').innerHTML + '</div>');
	a.document.close();
	a.print();
}

