var emo = false;

function openEmo() {
 emo = document.getElementById("emo");
 
 if(!emo) return false;

  emo.style.display = 'inline'; 
 
}
function emoAdd(val) {
 area = document.getElementById("emoArea");
 if(!area) return false;
 area.value += val + " ";
 
 if(emo)
  emo.style.display = 'none';
}

