
function relacja(id,szer,wys,kod)
{
   var width,height;
   if (szer>800)
      width = 800;
   else
      width = szer+40;

   if (wys>700)
      height = 700;
   else
      height = wys+40;
      
   window.open("relacja.php?id="+id+"&typ=relacja&zrodlo="+kod,"relacja","width="+width+",height="+height+",scrollbars=yes");
}
function wywiad(plik,szer,wys)
{
   var width,height;
   if (szer>800)
      width = 800;
   else
      width = szer+40;

   if (wys>700)
      height = 700;
   else
      height = wys+40;
      
   window.open("relacja.php?plik="+plik+"&typ=wywiad","wywiad","width="+width+",height="+height+",scrollbars=yes");
}
function inne(plik,szer,wys)
{
   var width,height;
   if (szer>800)
      width = 800;
   else
      width = szer+40;

   if (wys>700)
      height = 700;
   else
      height = wys+40;
      
   window.open("relacja.php?plik="+plik+"&typ=inne","artykul","width="+width+",height="+height+",scrollbars=yes");
}


