﻿function Redirect(url, new_window) {
    if (new_window) {
        window.open(url);
    } else {
        window.location = url;
    }
}