// This function opens an external link in a new window.
function go(obj) {
    window.open(obj.href);
    return false;
}
