function imgload() {
    var imgnum = Math.floor((Math.random() * 100)) % 4;
    document.getElementById("bkimg").src = '/img/index/' + imgnum + '.jpg';
    imgresize();
}
function imgresize(){
    document.getElementById("bkimg").width = xClientWidth();
}
