﻿
// Opens the popup window "c_popup" by index number.

function showWin(win_index) {

    //Shows the specified window.

    var main_pop = ASPxClientPopupControl.Cast('c_popup');
    main_pop.ShowWindow(main_pop.GetWindow(win_index));

    return false;
}
