function openprint(mystring){ 
	var win=window.open("", "newwin", "toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=no, copyhistory=yes, width=720, height=600");
	win.moveTo(screen.availWidth/2-360,screen.availHeight/2-280);
	win.document.write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><title>' + document.getElementsByTagName('h1')[0].innerHTML + '</title><link rel="stylesheet" href="assets/templates/moterys/main.css" type="text/css"><link rel="stylesheet" href="assets/templates/moterys/print.css" type="text/css"></head><body><table class="print" cellspacing="15"><tr><td class="print_head"><img src="assets/img/logo/logo_print.gif" alt=""><hr size="1"></td></tr><tr><td class="print_content">' + mystring + '</td></tr><tr><td class="sol"><a href="http://www.newsystems.lt/" target="_blank" title="E-sprendimas: Naujos Sistemos">E-Sprendimas: UAB "Naujos Sistemos"</a></td></tr></table><script type="text/javascript">print()</script></body></html>');
	win.document.close();
}