	function popup(width,height,title,html)
	{
		newwindow2=window.open('','name','height='+height+',width='+width+'');
		var tmp = newwindow2.document;
		tmp.write('<html><head><title>'+title+'</title>');
		tmp.write('<link rel="stylesheet" href="http://www.lietuvis.lt/libraries/style.css">');
		tmp.write('</head><body>');
		tmp.write(html);
		//tmp.write('<p><a href="javascript:alert(self.location.href)">view location</a>.</p>');
		//tmp.write('<p><a href="javascript:self.close()">close</a> the popup.</p>');
		tmp.write('</body></html>');
		tmp.close();
	}