// for OpenURIinNewWindow
function openURI(a, frame){
  if(!frame){
    return true;
  }
  window.open(a.href, frame);
  return false;
}

