﻿<!--
    function imageViewerComponent() {
        function showThumbnail() {
            closeDiv('divImageViewSmall');
            closeDiv('divImageViewMedium');
            openDiv('divImageViewThumbnail');
        }

        function showSmall() {
            closeDiv('divImageViewThumbnail');
            closeDiv('divImageViewMedium');
            openDiv('divImageViewSmall');
        }

        function showMedium() {
            closeDiv('divImageViewThumbnail');
            closeDiv('divImageViewSmall');
            openDiv('divImageViewMedium');
        }
        
        function showLarge(mediaId) {
            openWindow('ImageLarge.aspx?MediaId=' + mediaId, 'ImageViewLarge', '1055', '795');
        }
        
        this.showThumbnail = showThumbnail;
        this.showSmall = showSmall;
        this.showMedium = showMedium;
        this.showLarge = showLarge;
    }       
//-->
