﻿
        function GetImage(img, url) {
            // Detach the event handler (we'll make just one attempt).
            img.onload = null;
            // Try to get the picture.
            img.src = '/Thumbnail/default.aspx?File=/Upload/Images/' + url;
        }

