// head

// funkacja do otwierania okien z zawartosci html
// wywolanie: javascript:displayWindow('plik.html','nazwa okna',wysokosc,szerokosc,0)

function displayWindow(url, nazwa, wys, szer, proc) {
	
	if (proc==1) {
			 var width = window.screen.width * szer/100;
			 var height = window.screen.height * wys/100;
		} 
		else {
			 var width =  szer;
			 var height =  wys;
				
		}
		
		var okno = window.open(url, nazwa, 'width=' + width + 'px,height=' + height + 'px,resizable=1,scrollbars=yes,menubar=yes');
	}
	
function drukuj(co)  {

               druk= window.open("","printout","toolbar=no,menubar=0,location=no,personalbar=no,scrollbars=yes,status=yes,directories=no,resizable=yes,top=25,left=25,height=550,width=640")
               druk.document.writeln("<html>");
               druk.document.writeln("<head>");
               druk.document.writeln("<title>BFG</title>");
               druk.document.writeln("<meta http-equiv=Content-Type content=\"text/html; charset=iso-8859-2\">");
               druk.document.writeln("<link href=\"_inc/styl_druk.css\" type=text/css rel=stylesheet>");
               druk.document.writeln("</head>");
               druk.document.writeln("<body>");
               druk.document.writeln("<div align=\"right\"><a href=\"javascript:window.print();\"><img style=\"border: 0\" src=\"_images/printer.gif\" width=\"16\" height=\"16\"></a></div>");
               druk.document.write(document.getElementById(co).innerHTML);
               druk.document.writeln("</body>");
               druk.document.writeln("</html>");
               druk.document.close();
            }
