
// (C) 2008 Przemysław Wądołowski

$(document).ready(init);

function init()
{
  $('#jingiel').flash('flash/jingiel.swf', 305, 210);
}

function playVideo(src, id)
{
  if ( id != undefined ) src += '&id=' + id;
  popup('video.php?src='+src, 420, 395);
}

function playLekcja(no)
{
  popup('video.php?src='+'lekcje/' + no + '.wmv&lekcja=1', 420, 395);
}

function popup(url, width, height)
{
  if (width == undefined) width = 500;
  if (height == undefined) height = 500;
  var left =  (screen.availWidth - width) / 2;
  var top =  (screen.availHeight - height) / 3;
  window.open(url, '', 'width='+width+',height='+height+',left='+left+',top='+top
                              +',resizable,scrollbars=auto');
}