﻿function set_image_max_size(img_id, img_src, max_width, max_height, container_id) {
    var img_loader = new Image();

    $("#" + img_id).removeAttr('width');
    $("#" + img_id).removeAttr('height');
    $("#" + img_id).attr('src', 'images/popidate-logo.png');
    $("#" + container_id).css({ 'height': max_height, 'width': max_width });
    $("#FixedBox_message_box_pic").css({ 'width': (max_width + 4) });

    img_loader.onload = function () {
        if (img_loader.width > img_loader.height) {
            var height_of_max = (img_loader.height / img_loader.width) * max_height;
            $("#" + img_id).attr('width', max_width);
            if (container_id != null) {
                $("#" + container_id).animate({ 'height': height_of_max, 'width': max_width });
            }
        }
        else {
            $("#" + img_id).attr('height', max_height);
            var width_of_max = (img_loader.width / img_loader.height) * max_height;
            if (container_id != null) {
                $("#" + container_id).animate({ 'height': max_height, 'width': width_of_max });
                $("#FixedBox_message_box_pic").animate({ 'width': (width_of_max + 4) });
            }
        }

        $("#" + img_id).attr('src', img_src);

    }

    img_loader.src = img_src;
}

