$(document).ready(function(){
    $(".lightbox").fancybox({
        'titlePosition' : 'inside',
        'titleFormat'   : function(title, currentArray, currentIndex, currentOpts) {
                          var splitTitle = title.split('|');
                          //return your text in whatever format you need
                          return '<div id="fancy-pages">' +  (currentIndex + 1) + ' / ' + currentArray.length + '</div><div id="fancy-ime">' + splitTitle[0] + '</div><br class="clear" /><div id="fancy-cena">' + splitTitle[1] + ' <span>' + splitTitle[2] + '</span>' + splitTitle[3] + '</div><div id="fancy-opisanie">' + splitTitle[4] + '</div>';
                          }
    });
});

var popUpWin=0;

function popUpWindow(URLStr, left, top, width, height)
{
    if(popUpWin)
    {
        if(!popUpWin.closed) popUpWin.close();
    }
    popUpWin = window.open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}


