function info_switch( n ) {
    obj=document.getElementById("info_"+n);
    if (obj.style.display=="" || obj.style.display=="none") {
        obj.style.display="block";
        //helpclose(n);
    } else {
        obj.style.display="none";
    }
}
