function load_img(pImageURL) {
    var person_image = document.getElementById('person_image');
    var img = new Image();

    img.src = pImageURL;

    var width = img.width;
    var height = img.height;

    if (person_image.src.indexOf('blank_user.png') == -1 && height > 200) {
        // person_image.src = img.src;
        person_image.height = 200;
        person_image.width = ((200 / height) * width);
    }
}
