﻿var currentDialog = null;
function showDialog(el) {
    currentDialog = new StickyWin.Modal({ content: $(el).get('html') });
}
function hideDialog(reload) {
    if (reload) {
        window.location.href = '/discover/';
    }
    else if (currentDialog) {
        currentDialog.hide();
        currentDialog = null;
    }
}

