﻿//
// Util Library v0.1
//
// + Function to open url in a new browser window
//

function go(url)
{
    window.open(url, "_blank");
}