
// 荒熊伝言板 更新日時表示 (月日の 0 を除く処理)
function writeUpdateDate(str){
    if(str.charAt(0)=="0"){
        document.write(str.substring(1,2));
    }else{
        document.write(str.substring(0,2));
    }
    
    document.write("/");
    
    if(str.charAt(3)=="0"){
        document.write(str.substring(4,5));
    }else{
        document.write(str.substring(3,5));
    }

    document.write(str.substring(5,11));
}

// イメージの変更
function changeImg(imgName,imgNum) {
    if (navigator.appVersion > "3") {
        document.images[imgName].src = eval(imgNum + ".src");
    }
}





