function toggleDiv(id, vermas, vermenos, vermastip, vermenostip) {
    if (document.getElementById(id).style.display == 'none') {
        document.getElementById(id).style.display = 'inline';
        document.getElementById(id+'link').innerHTML = vermenos;
        document.getElementById('antartecWebForm:'+id+'tipcontent').innerHTML = vermenostip;
    }
    else if (document.getElementById(id).style.display == 'inline') {
        document.getElementById(id).style.display = 'none';
        document.getElementById(id+'link').innerHTML = vermas;
        document.getElementById('antartecWebForm:'+id+'tipcontent').innerHTML = vermastip;
    }
}

function refresh() {
    window.location.reload();
}

function goToPage(name) {
    if (name != null && name.length > 0) {
        window.location.href = name;
    }
}

/*function expandDiv(id) {
    document.getElementById(id).style.display = 'inline';
}

function collapseDiv(id) {
    document.getElementById(id).style.display = 'none';
    }
    else
        return true;
}*/