function showHideFriendForm() {
  x$('friend-form-box').toggle();
  document.getElementById('email_from').focus();
}

function hideFriendFromBoxOnLoad(){
  document.getElementById( "friend-form-box" ).style.display = "none";
}

