﻿//Redirect the user to the supplied page.
function LoadPage(controller, view, arguements) {
    if (arguements == null) {
        location.href = '/' + controller + '/' + view;
    }
    else {
        location.href = '/' + controller + '/' + view + '/' + arguements;
        //location.href = '/' + controller + '/' + view + arguements;
    }
}

