﻿//function OpenWindow(name) {
//    var wnd = window.radopen("http://www.google.com", name);
//    wnd.set_title("Wizard");
//    wnd.setSize(800, 400);
//    wnd.Center()
//    return false;
//}

function ShowWindow(url, name) {
    var wnd = window.radopen(url, name);
    wnd.setSize(640, 400);
    wnd.Center();
    wnd.set_title("News");
    return false;

    //window.radopen("/App_UserControls/Wizard/Construct.aspx?Wizard=Article", "Wizard");
    //First argument is the URL. Since no url is provided, the NavigateUrl property set on the server will be used.
}

function EditArticle() {
    window.radopen("/App_UserControls/Wizard/Construct.aspx?Wizard=Article&ID=9", "Wizard");
    //First argument is the URL. Since no url is provided, the NavigateUrl property set on the server will be used.
}

function ShowMembership() {
    window.radopen("/App_UserControls/Wizard/Construct.aspx?Wizard=Membership", "Wizard");
    //First argument is the URL. Since no url is provided, the NavigateUrl property set on the server will be used.
}