function open_window(link_tag)
{
    url = link_tag.href;
    newWindow = window.open(url, '');
    newWindow.focus();
    return false;
}