/**
 * Services Functions
 */

function focusAnchor(url, anchorId) {
  if(url != ''){
    window.location.href = url + "#"+anchorId;
    window.location.reload();
  }else{
    $('#'+anchorId).click();
    $('#'+anchorId).focus();
  }
}
