function drukuj()
	{
		var div = document.getElementById('warstwa_drukuj');
		div.style.position = 'absolute';
		div.style.left = '35%';
		div.style.marginleft = '-150px';
		div.style.top = '35%';
		div.style.margintop = '-50px';
		div.style.zindex = '1';
		div.style.padding = '0px';
		div.style.width = '300px';
		div.style.height = '70px';
		div.style.display = 'block';
		div.style.display = 'inline';
		div.align = 'center';
}
function drukuj_wszystko(id, ver_id)
{
	var div = document.getElementById('warstwa_drukuj');
	div.style.display = 'none';
	window.open('/print.php?doc_id='+id+'&ver_id='+ver_id+'&drukuj=1', 'newWindow', 'scrollbars=1,resizable=1,height=570,width=796');
	return true;
}
function drukuj_fragment(id ,ver_id)
{
	var div = document.getElementById('warstwa_drukuj');
	div.style.display = 'none';
	window.open('/print.php?doc_id='+id+'&ver_id='+ver_id+'&drukuj=2', 'newWindow', 'scrollbars=1,resizable=1,height=570,width=796');
	return true;
}
function anuluj()
{
	var div = document.getElementById('warstwa_drukuj');
	div.style.display = 'none';
	return true;
}

