function popup(url, width, height)
{
      var options = "toolbar=no,scrollbars=yes,resizable=yes,width="+width+",height="+height+";"
      popupWindow=window.open(url,"_blank",options);
}

function wjPopup(url, width, height)
{
//  url=/components/gallery/show_gallery_image.jsp?src=/images/gallery/spolecne/s_fs-banka-klient_zakladni-pravidla-vztahu.jpg

      var adr = url.replace("/components/gallery/show_gallery_image.jsp?src=","")
      adr = adr.substring(0,adr.lastIndexOf("/")+1);
      var img = url.substring(url.lastIndexOf("/")+3);
      
      jQuery.prettyPhoto.open(adr+img,'','');

      //var options = "toolbar=no,scrollbars=yes,resizable=yes,width="+width+",height="+height+";"
      //popupWindow=window.open(url,"_blank",options);
}

//prettyPhoto init
//$(document).ready(function(){
//  $("a[rel^='prettyPhoto']").prettyPhoto({
//      animationSpeed: 'normal', /* fast/slow/normal */
//      padding: 40, /* padding for each side of the picture */
//      opacity: 0.70, /* Value betwee 0 and 1 */
//      showTitle: true, /* true/false */
//      allowresize: true, /* true/false */
//      counter_separator_label: '/', /* The separator for the gallery counter 1 "of" 2 */
//      theme: 'jch1' /* light_rounded / dark_rounded / light_square / dark_square */
//    });
//});
