	 	function Print(){
	 	var w = 700;
	 	var h = 800;
	 	var content;
	 	var winl = (screen.width - w) / 2;
     	var wint = (screen.height - h) / 2-50;
     	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+'resizable=1,scrollbars=yes';
	 	content = document.getElementById('printSection');
  			var generator=window.open('','name',winprops);
  			generator.document.write('<html><head><title>Spausdinti</title>');
 			generator.document.write('<link href=".\/template\/popupStyle.css" rel="stylesheet" type="text\/css" media="print" \/>');
 			generator.document.write('</head><body><p id="display" align="right"><a href="#" onclick="window.print(); return window.close();">Spausdinti</a></p>');
  			generator.document.write('<div>'+content.innerHTML+'</div>');
  			generator.document.write('</body></html>');
  			generator.document.close();
  			return false;
		}