
    function ImagePopup(url,w,h) {
        w = (w) ? w += 20 : 400;
        h = (h) ? h += 25 : 300;
        var args = 'width='+w+',height='+h+',resizable';
        imagePopup = window.open(url, 'Image', args);
        imagePopup.focus();
        if (imagePopup) return false;
        else return true;
    }

