	//------------ drukuj start
	
function drukuj(src) {
	printW(src, 800, 480);
}
	
function printW(src, w, h) {
	newWindow = null;
	if (window.screen) {
		aw = screen.availWidth;
		ah = screen.availHeight;
	} else {
		aw = 800;
		ah = 480;
	}
	if (newWindow==null || newWindow.closed) {
		settings=
		"left=" + (aw-w)/2 + ","
		+"top=" + (ah-h)/2 + ","
		+"screenX=" + (aw-w)/2 + ","
		+"screenY=" + (ah-h)/2 + ","
		+"width=" + w + ","
		+"height=" + h + ","
		+"innerWidth=" + w + ","
		+"innerHeight=" + h + ","
		+"toolbar=no,"
		+"location=no,"
		+"directories=no,"
		+"status=yes,"
		+"menubar=no,"
		+"scrollbars=yes,"
		+"resizable=yes"
		var url = '' + src; 
		newWindow = window.open(url, '', settings);
		
	}
	try {
		newWindow.focus();
	}
	catch (e) {
	}
}

	//------------ drukuj stop
