var newwindow;
function popImage(url, width, height)
{
	var left   = (screen.width  - width)/2;
 	var top    = (screen.height - height)/2;
	
	var params = 'width='+width+', height='+height;
	params += ', top='+top+', left='+left;
	params += ', directories=no';
	params += ', location=no';
	params += ', menubar=no';
	params += ', resizable=no';
	params += ', scrollbars=no';
	params += ', status=no';
	params += ', toolbar=no';
	
	newwindow=window.open(url,'name', params);
	if (window.focus) {newwindow.focus()}
	
	newwindow.document.write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">');
	newwindow.document.write('<html xmlns="http://www.w3.org/1999/xhtml"><head>');
	newwindow.document.write('<title>Audito konsultacinis centras</title>');
	newwindow.document.write('<link type="text/css" rel="stylesheet" href="/public/css/style.css" />');
	newwindow.document.write('</head><body style="margin: 0; background-color: #fff;">');
	newwindow.document.write('<a style="display: block; float: left; margin: 5px 10px;" href="javascript:self.close();">Uždaryti</a>');
	newwindow.document.write('<a style="display: block; float: left; margin: 5px 10px;" href="javascript:window.print();">Spausdinti</a>');
	newwindow.document.write('<img src="');
	newwindow.document.write(url);
	newwindow.document.write('" alt="" />');
	newwindow.document.write('</body></html>');
}
