// JavaScript Document
// Vocab
																		

function showWord()
	{
	// variable is needed to have tags in IE
	var n = "<h3>Word Intructions</h3>" +
					"<p>Specify the word or phrase which should be used more often.</p>" +
					"<p>Please only include entries appropriate for general audiences.</p>" +
					"<p>Capitalize.</p>" +
					"<h4>Examples</h4>" +
					"<p>Afoot<br />Impeccable<br />Juxtaposition<br />Vex</p>";
	document.getElementById("addHelpText").innerHTML=n;
	}
function showDefinition()
	{
	var n = "<h3>Definition Intructions</h3>" +
					"<p>Specify the specific use of the word which should be used more often.</p>" +
					"<p>Format this as a dictionary or thesaurus entry.</p>" +
					"<p>An ad&ndash;filled, but useful site is <a target='_blank' href='http://dictionary.reference.com/'>Dictionary.com</a></p>" +
					"<h4>Examples</h4>" +
					"<ul><li>very evil, generally in a clever or threatening manner</li>" +
					"<li>total, often ludicrous failure</li>" +
					"<li>very bad</li>" +
					"<li>obtain through the use of flattery</li></ul>";
	document.getElementById("addHelpText").innerHTML=n;
	}
function showExample()
	{
	var n = "<h3>Example Intructions</h3>" +
					"<p>Give an example or your submission in use.</p>" +
					"<p>Make your English teachers proud by writting a complete sentence.</p>" +
					"<p>Feel free to use a form of the word. Just make sure to indicate the general idea.</p>" +
					"<h4>Examples</h4>" +
					"<ul><li>Crossing the streams would be heinous.</li>" +
					"<li>Trust, but it would behoove you to verify as well.</li>" +
					"<li>It is imperative that you give me accurate records, and in a timely manner.</li>" +
					"<li>The challenge of making pig sized elephants vexes me.</li></ul>";
	document.getElementById("addHelpText").innerHTML=n;
	}
function showUser()
	{
	var n = "<h3>User Intructions</h3>" +
					"<p>Put a username if you wish, or be Anonymous.</p>" +
					"<p>Remember that the list can be sorted by usernames.</p>";
					//"<h4>Currently in use:</h4>"
	document.getElementById("addHelpText").innerHTML=n;
	}
