﻿/// <reference path="../jquery-1.6.3.min.js" />
/// <reference path="../jquery-ui-1.8.16.custom.min.js" />

$(function () {
    $(".button").button();  
      
});

function ShowAttention(url) {
    $("#blackboard-note").dialog({
        modal: true,
        autoOpen: true,
        height: 'auto',
        width: '400',
        title: 'Attention',
        resizable: false,
        buttons: {
            "Ok": function () { location.href = url; },
            Cancel: function () { $(this).dialog("close"); }
        }
    });    
}

function ReloadPage() {
    location.reload(true);
}
function GoToStudentsList() {
    location.href = '/Maintenance/Students';
}

function ShowLoading(show) {
    if(show) {
        $("#loading").slideDown(500);
    }
    else {
        $("#loading").slideUp(500);
    }
}
   

