﻿function OpenNewTab(url) {
    var newwindow = window.open(url, '_blank');
    newwindow.focus();
}