/* JavaScript functions.js */

/**
 * open link in new window
 *
 * gets the url for the link and opens it in a new browser window
 * @param html element
 */
function openExternal(this_elm)
{

    var strUrl = this_elm.href;
    window.open(strUrl);
    return;

}
