    function imgOpen(path,title,iWidth,iHeigth) {
        if ($(window).width() - iWidth < 200)
        {
            var iWidth = $(window).width() - 200;
        } else {
            var iWidth = iWidth;
        }
        if($(window).height() - iHeigth < 100) {
            var iHeigth = $(window).height() - 100;
        }    else {
            var iHeigth = iHeigth;
        }
        popupWin = window.open(path+'&tt='+title,'new','0,0,0,0,0,toolbar=no,directories=no,menubar=no,resizable=1,scrollbars=1,width='+iWidth+',height='+iHeigth+',top=50,left=50');
        popupWin.focus();
    }

    

