﻿// JScript File
function openUrlNewWindow(url) {

    window.open(url, '_blank');

}

function goUrl(url) {
    location.href = url;
}

