function loadImg(imgSrc, width, height) {
    if (document.getElementById) {
        var img = document.getElementById('xmasImg');
        img.src = '/images/profile/'+imgSrc;
        img.width = width;
        img.height = height;
        img.style.marginLeft = Math.round((417 - width) / 2);
    }
}