function showhide(id)
{
        var desc=document.getElementById(id);
        if(desc.style.display=='none')
        {
                if(document.all)
                {
                        desc.style.display='block';
                }
                else
                {
                        desc.style.display='table-row';
                }
        }
        else
        {
                desc.style.display='none';
        }
}


function showVideo(plik,aw,ah)
{


         ustawienia="width="+aw+",height="+ah+",left=50,top=50,toolbar=no.location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes";
         okno=window.open(plik,'zoom',ustawienia);
}
