var bbcode_helpmode = "Help Mode\nClick on any of the formatting buttons for a description and instructions.";
var bbcode_advmode = "Advanced Mode\nThe BB Code will be inserted without options as soon as you hit the button.";
var bbcode_normode = "Normal Mode\nPopups will bring you step by step through the process of inserting BB Code.";

var bbcode_help_email = "E-mail Tag\nTurns an e-mail address into a mailto hyperlink.\nUsage: [email]someone@anywhere.com[/email]\nUsage: [email=someone@anywhere.com]link text[/email]";
var bbcode_prompt_email = "What name should be shown\nIf this field is empty the e-mail address will be visible";
var bbcode_prompt_emailerror = "Please enter an e-mail address.";

var bbcode_help_size = "Size Tag\nSets the text size.\n\nUsage: The size given will be a relative size, relative to the default board size.\n Eg. default text size is 12pt, setting[size=-3]This is size -3pt text[/size]\n will provide a text of size 9pt (because 12pt-3pt = 9pt)";
var bbcode_prompt_size = "Please enter the text to be size ";

var bbcode_help_font = "Font Tag\nSets the font face for the enclosed text.\nUsage: [font=Arial]The font of this text is Arial[/font]";
var bbcode_prompt_font = "Please enter the text to be in ";

var bbcode_help_bold = "Bold Tag\nMakes the enclosed text bold.\nUsage: [b]This is some bold text[/b]";
var bbcode_prompt_bold = "Please enter the text that should be bolded.";

var bbcode_help_italic = "Italicise Tag\nMakes the enclosed text italicized.\nUsage: [i]This is some italicized text[/i]";
var bbcode_prompt_italic = "Please enter the text that should be italicized.";

var bbcode_help_quote = "Quote tag\nQuotes the enclosed text to reference something specific that someone has posted.\nUsage: [quote]This is a quote[/quote]";
var bbcode_prompt_quote = "Please enter the text you want quoted.";

var bbcode_help_color = "Color Tag\nSets the text color. Any named color can be used.\nUsage: [color=red]This is some \\'red'\\ text[/color]";
var bbcode_prompt_color = "Please enter the text that should be colored ";

var bbcode_help_center = "Centered tag\nCenters the enclosed text.\nUsage: [align=center]This text is centered[/align]";
var bbcode_prompt_center = "Please enter the text that should be centered.";

var bbcode_help_link = "Hyperlink Tag\nTurns an URL into a hyperlink.\nUsage: [url]http://www.anywhere.com[/url]\nUsage: [url=http://www.anywhere.com]link text[/url]";
var bbcode_prompt_link1 = "What name should be shown?\nIf this Field is blank the URL would be visible";
var bbcode_prompt_link2 = "Please enter the URL for the hyperlink.";

var bbcode_help_image = "Image Tag\nInserts an image into the post.\nUsage: [img]http:\www.anywhere.comimage.gif[/img]";
var bbcode_prompt_image = "Please enter the URL to the image you wish to insert.";

var bbcode_help_code = "Code Tag\nBlockquotes the text you reference and preserves the formatting.\nuseful for posting code.\nUsage: [code]This is formatted text[/code]";
var bbcode_prompt_code = "Please enter the text you wanted block quoted.";

var bbcode_help_list = "List Tag\nBuilds a bulleted, numbered, or alphabetical list.\nUsage: [list]\n[*]item1\n[*]item2\n[*]item3\n[/list]";
var bbcode_prompt_list_start = "Please select your list type\n ('A' for alphabetic, '1' for numeric) You can leave this field blank";
var bbcode_prompt_list_error = "ERROR!\nThe only possible values for type of list are blank 'A' and '1'.";
var bbcode_prompt_list_end = "List Item:\nLeave it blank to End the List";

var bbcode_help_underline = "Underline Tag\nUnderlines the enclosed text.\nUsage: [u]This text is underlined[/u]";
var bbcode_prompt_underline = "Please enter the text that should be underlined.";

window.onload = loadEls;
var messageElement;

function loadEls() {
	messageElement = document.getElementById("message");
}

