﻿
function CheckImage(pic,id) {
    if (pic == '') {
        var imge = document.getElementById('imgpaper' + id);
        var aimg = document.getElementById('newsimage' + id);
        if (imge!=null && aimg!=null) {
            aimg.removeChild(imge);
        }
        return;
    } 
    if (pic!=''){
        var imge = document.getElementById('imgpaper' + id);
        var dive = document.getElementById('newsabs' + id);
        if (dive!=null && imge!=null) {
            dive.style.height = imge.style.height+20;
        }
    }

}

//function mrqin() {
//    var mrq = document.getElementById('mrq');
//    mrq.start();
//    
//}
//function mrqout() {
//    var mrq = document.getElementById('mrq');
//    mrq.stop();
//}