function openInNewWindow(link)
{
    var win = window.open(link.getAttribute('href'), '_blank');
    win.focus();
    return false;
}
