/**
 * addEmail         - posts email address to /data/community/addemail
 * 
 * @param email  $email  
 * @access public
 * @return void
 */
function addEmail( email ){
  if( String( email ).length == 0 ) return;
  var myHTMLRequest = new Request.HTML({
    method:"post", 
    url:'/data/community/addemail'
  });
  myHTMLRequest.success = onSuccessEmail;
  myHTMLRequest.send( "email="+email );
}

function onSuccessEmail(response){
  alert( response );
}

