function SpausdintiDiv(id,kelias) {
	var sd = document.getElementById('straipsnis_'+id);
	var txt = sd.outerHTML;
	var re_pr = new RegExp("<script.*?>", "gi");
	var kur_pr = txt.search(re_pr);
	while ( kur_pr != -1 ) {
		var txt1 = txt.substr(0,kur_pr);
		var re_gl = new RegExp("<\/script>", "gi");
		var kur_gl = txt.search(re_gl);
		if ( kur_gl != -1 ) txt1 += txt.substr(kur_gl);
		txt = txt1;
		kur_pr = txt.search(re_pr);
	}
	var html = txt;
	nl = window.open(this.href);
	nl.document.writeln("<html>");
	nl.document.writeln("<head>");
	nl.document.writeln("<meta http-equiv='Content-Type' content='text/html; charset=utf-8' />");
	nl.document.writeln("<link href='km_stiliai.css' type='text/css' rel='stylesheet' />");
	nl.document.writeln("<link rel='icon' href='http://www.kmintys.lt/favicon.ico' />");
	nl.document.writeln("<link rel='SHORTCUT ICON' href='http://www.kmintys.lt/favicon.ico' />");
	nl.document.writeln("<title>Kupiškėnų mintys</title>");
	nl.document.writeln("</head>");
	nl.document.writeln("<body style='margin:4px'>");
	nl.document.writeln("<div style='width:700px'>");
	nl.document.writeln('<p style="text-align:center; padding-bottom:6px;"><img src="'+kelias+'km.png'+'" alt="Kupiškėnų mintys" style="border:0px; width:200px" /></p>');
	nl.document.writeln('<hr />');
	nl.document.writeln(html);
	nl.document.writeln('<hr><p style="font-family:Arial,Sans-serif; font-size:11px"><i>Ši informacija yra iš "Kupiškėnų minčių" internetinio puslapio.</i><br></p>');
	nl.document.writeln("</div>");
	nl.document.writeln("</body>");
	nl.document.writeln("</html>");
	nl.document.getElementById('mygtukai_'+id).style.display = 'none';
	nl.focus();
//	nl.print();
//	nl.close();
}

