﻿

MVCAction = function(Controller, Action) {
    var Result = BaseURL + Controller + "/" + Action + "/";
    for (var i = 2; i < arguments.length; i++)
        if (arguments[i] != undefined)
        Result += arguments[i] + "/";
    return Result;
}

MVCGo = function(Controller, Action) {
    var Result = BaseURL + Controller + "/" + Action + "/";
    for (var i = 2; i < arguments.length; i++)
        if (arguments[i] != undefined)
        Result += arguments[i] + "/";
    window.location.href = Result;
}
