Your IP : 216.73.216.170


Current Path : /var/www/iplanru/data/www/i-plan.ru/administrator/components/com_sef/assets/js/
Upload File :
Current File : /var/www/iplanru/data/www/i-plan.ru/administrator/components/com_sef/assets/js/infotexts.js

function jsToggleInfoText()
{
    // Toggle state
    jsInfoTextShown = !jsInfoTextShown;
    
    // Show/hide div
    $('jsInfoText').style.display = (jsInfoTextShown ? 'block' : 'none');
    
    // Toggle link text
    $('jsInfoTextLink').innerHTML = '(' + (jsInfoTextShown ? jsInfoTextHide : jsInfoTextShow) + ')';
    
    // Save new state using AJAX
    var url = jsInfoTextUrl + '&state=' + (jsInfoTextShown ? '1' : '0');
    
    new Request({
        'url': url,
        'method': 'GET',
        'onSuccess': function(text, xml) {
            // Do nothing
        }
    }).send();
}