// JavaScript Document

/* IDが parentid のクラスを cls にする */
function toggleBlock(parentid,cls){
    if(document.getElementById) {
        document.getElementById(parentid).className=cls;
    }
}

