function show_hide(obj) {
if (obj.style.display == 'none') {
obj.style.display = 'block';
} else if (obj.style.display == 'block') {
obj.style.display = 'none';
}
}

function onclick_folder(obj, icon, url) {
if (obj.style.display == 'none') {
icon.src = url + 'minus.gif';
icon.alt="收起";
show_hide(obj);
} else {
icon.src = url + 'plus.gif';
icon.alt="展開";
show_hide(obj);
}
}
//-->
