
function openprint(mystring)
{ 
	var path = "";
	if(window.location.href.indexOf('default.html') == -1) path = "../";
	var win=window.open("", "newwin", "toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=no, copyhistory=yes, width=625, height=700");
	win.moveTo(screen.availWidth/2-360,screen.availHeight/2-280);
	win.document.write('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><title>' + document.getElementsByTagName('title')[0].innerHTML + '</title><link rel="stylesheet" href="' + path + 'css/print.css" type="text/css"></head><body><h2>Lietuvos regioninė politika</h2><hr size="1" style="margin-bottom:15px">' + mystring + '<script type="text/javascript">print()</script><p>© 2008 m. Vidaus reikalų ministerija</p></body></html>');
	win.document.close();
}