function wps(z) {document.write(z);}

function nowe_okno(url,tytul,opcje) {
	var okno;
	if (okno) {
		okno.close();
	}
	okno = window.open('',tytul,opcje);
	okno.document.open();
	okno.document.write('<head><title>'+tytul+'</title></head><body><style type="text/css"><!--html {height: 100%;} body {height: 100%; margin: 0 auto; padding: 0px;}--></style><img src="'+url+'" alt="'+tytul+'" /><br/></body>');
	okno.document.close();
	okno.focus();
}

function fs(doc) {
	if (window.screen) {
		w = window.screen.availWidth;
		h = window.screen.availHeight;
	}
	window.open(doc,'fs','width='+w+',height='+h+',top=0,left=0');
}
