﻿function toggleCurrentYear(el) {
    $(el).next().slideToggle('fast');
}
function closeAlert() {
    var url;
    if ($('#alertUrl')) {
        url = $('#alertUrl').val();
        $('#alertUrl').remove();
    }
    if (url != undefined && url !== '') {
        window.location = url;
    }
    else {
        $('#alertContainer').dialog("destroy").remove();
    }
}