function show_hide_text(divObj,text) {
    var div = divObj.parentNode.getElementsByTagName('div')[1];
    if (div.style.display == 'none') {
        div.style.display = 'block';
        divObj.innerHTML = '<img src="http://forum.eve-ru.com/style_images/icon87_02.png" alt="спойлер" title="спойлер" width="16" height="16" />' + text + " (скрыть)";
    } else {
        div.style.display = 'none';
        divObj.innerHTML = '<img src="http://forum.eve-ru.com/style_images/icon87_02.png" alt="спойлер" title="спойлер" width="16" height="16" />' + text;
    }
}