function letterinit() {
   //assign event handlers.  I'm using anonymous functions to keep the number of similiar 
   //named functions low.
   document.getElementById("SubmissionStatus0").onclick = function() { addTags("Thanks for giving us a chance to consider your work. Unfortunately, this submission wasn't quite what we were looking for. We publish only 52 poems per year, which means that we must turn away the vast majority of the poems sent to us. Unsolicited submissions, however, are the lifeblood of our enterprise, and we appreciate you thinking of us. \n\nThe Editors \nhttp://linebreak.org"); };
}

function addTags(tag) {
   document.getElementById("ResponseEntry").value += tag;
}