function film(src, szer, wys, tytul) {
okno = window.open(src,'','width='+szer+',height='+wys+',menubar=no,toolbar=no,location=no,scrollbars=no,resizable=yes,status=no');
okno.document.write('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"><html><head><meta http-equiv="Generator" content="TigerII MiniPad (C)2001"><title>'+tytul+'</title></head><body style="margin:0;padding:0;"><iframe width="'+szer+'" frameborder="0" height="'+wys+'" marginheight="0" marginwidth="0" src="'+src+'" scrolling="no" frameborder="0"></iframe></body></html>');
okno.document.close();
if(navigator.userAgent.indexOf('Opera') != -1){
okno.window.moveTo((0.5*screen.width)-(0.5*szer),10);
}else{
okno.window.moveTo((0.5*screen.width)-(0.5*szer),(0.5*screen.height)-(0.5*wys));
}
}