function mail(a, b, c) {
  if(c) {
    window.location.href='mailto:'+a+'@'+b+'?Subject='+c;
  } else {
    window.location.href='mailto:'+a+'@'+b;
  }
}