 function fullscreen(stan, id, pozycja, sz)
 {
   ob = document.getElementById('film'+id);
   wy = Math.round(sz/1.33333)+35;
   if (stan==true)
   {
      ob.setAttribute('width',640);
      ob.setAttribute('height',515);
						if (pozycja==2) document.getElementById('player'+id).style.left= -(640 - sz) +'px';
   }
   else
   {
      ob.setAttribute('width', sz);
      ob.setAttribute('height', wy);
						document.getElementById('player'+id).style.left=0;
   }
 }

