﻿function CheckImages() {
    

    for (var i = 1; i < 51; i++) {
        
        var pic = document.getElementById("ctl00_maincontent_Image"+i);
        if (pic == null) continue;
        if (pic.complete==true) continue;
        else pic.src = 'http://vipvoy.com/images/blank.png';
        pic.width = 64;
        pic.height = 64;
        
    }
}

