function moveTopicReasonSelected() {
    var selectmenu = document.getElementById("move_topic_reason_list");
    var reasontextarea = document.getElementById("notify");

	var simpleFactsStr = "The topic named [color=blue][TOPIC][/color] has been moved from the board [PREVBOARD] to the board [BOARD]."+"\n\n"+"[TOPIC LINK]"+"\n\n";

    var moreAppropriateStr = "The topic you created at [PREVBOARD] named [color=blue][TOPIC][/color] has been moved to a more appropriate board: [BOARD]."+"\n\n"+"[TOPIC LINK]"+"\n\n"+"Please take a moment to review the structure of Craftster here:"+"\n"+"http://www.craftster.org/craftsterguide.html#anchor2"+"\n"+"If you\'ve started a thread, but realize that you\'ve started it on the wrong board, you can click [b]Move Topic[/b] and choose the correct board to move it to.";

    var salesFishingStr = "[color=blue]We realize that this might not be your intention [i]at all[/i], but it could be perceived that your post is fishing for sales.  Please review the rules here:  http://www.craftster.org/craftsterguide.html#anchor9a"+"\n\n"+"Your post has been moved to the private [b][url=http://www.craftster.org/forum/index.php?board=337.0]LIMBO[/url][/b] board.  Please find your post in LIMBO, edit it (click the Modify button) so that it adheres to the rules at the link above and reply to this message to let us know you have done so.  A Moderator will then move it back to its original board for you.  It will be deleted if it's not edited in a week's time from being placed in LIMBO."+"\n\n"+"LIMBO board: http://www.craftster.org/forum/index.php?board=337.0"+"\n\n"+"[size=9pt][b]Action items for you:[/b][/size]"+"\n"+"[list]"+"\n"+"[li]Review http://www.craftster.org/craftsterguide.html#anchor9a[/li]"+"\n"+"[li]Go to your post on the [url=http://www.craftster.org/forum/index.php?board=337.0]LIMBO board[/url] and Modify it to adhere to Craftster rules[/li]"+"\n"+"[/list][/color]";
    //var salesFishingStr = "string1";

    var otherWebsiteSelfPromoStr = "[color=blue]We realize that this might not be your intention [i]at all[/i], but it could be perceived that your post is attempting to promote your website or blog and not contribute to sharing a project on Craftster.  Please review the rules here:  http://www.craftster.org/craftsterguide.html#anchor9j1"+"\n\n"+"Your post has been moved to the private [b][url=http://www.craftster.org/forum/index.php?board=337.0]LIMBO[/url][/b] board.  Please find your post in LIMBO, edit it (click the Modify button) so that it adheres to the rules at the link above and reply to this message to let us know you have done so.  A Moderator will then move it back to its original board for you.  It will be deleted if it's not edited in a week's time from being placed in LIMBO."+"\n\n"+"LIMBO board:  http://www.craftster.org/forum/index.php?board=337.0[/color]"+"\n\n"+"[size=9pt][b]Action items for you:[/b][/size]"+"\n"+"[list]"+"\n"+"[li]Review http://www.craftster.org/craftsterguide.html#anchor9j1[/li]"+"\n"+"[li]Go to your post on the [url=http://www.craftster.org/forum/index.php?board=337.0]LIMBO board[/url] and Modify it to adhere to Craftster rules[/li]"+"\n"+"[/list][/color]";
    //var otherWebsiteSelfPromoStr = "string2";
         
    var noTomatoesStr = "Hello!  We hope you won't throw rotten tomatoes at us!! ;)  We need to impart something about a message you posted.  Please keep in mind this has been done in an effort to help keep Craftster running smoothly and we don't mean any disrespect or ill will at all!  Craftster is a huge community where hundreds and hundreds of messages are posted each and every day.  The Moderators are here to enforce rules that we believe are to the benefit of everyone.  If you believe we have made a mistake, please feel free to reply to this message at any time.  Thank you so much for your understanding! :)"+"\n"+"[hr]"+"\n";
    //var noTomatoesStr = "string3";
    
    if ( selectmenu.value == 1 ) {
        reasontextarea.value = simpleFactsStr;
    } else if ( selectmenu.value  == 2 ) {
        reasontextarea.value = moreAppropriateStr;
    } else if ( selectmenu.value  == 3 ) {
        reasontextarea.value = noTomatoesStr + "\n\n" + salesFishingStr;
    } else if ( selectmenu.value  == 4 ) {
        reasontextarea.value = noTomatoesStr + "\n\n" + otherWebsiteSelfPromoStr;
    }
}
