var helpArray = new Array();

var HELP_SEARCH = 0;
helpArray.push('Enter the item you wish to search for.<br><br>For example:<br><br>Playstation<br>Laptops<br>Sony Ericcson<br>Burberry<br>Nintendo<br>Abercrombie<br>iPod');
var HELP_EXCLUDE = 1;
helpArray.push('Enter words that you want excluding from the search.');
var HELP_WITHOUTMISSPELL = 2;
helpArray.push('Use this option to search just the original word.');
var HELP_DESCRIPTION = 3;
helpArray.push('Use this option to search misspelled descriptions aswell as titles.');
var HELP_ORIGINAL = 4;
helpArray.push('Use this option to search for the original word along with the misspelled versions.');
var HELP_DEADLINE = 5;
helpArray.push('Use this option to limit the results to listings ending within the specified time.');
var HELP_PAYPAL = 6;
helpArray.push('Use this option to search for sellers who accept PayPal.');
var HELP_BUYITNOW = 7;
helpArray.push('Use this option to find Buy It Now items.');
var HELP_BIDS = 8;
helpArray.push('Use this option to search for items with bids within the specified range.');
var HELP_PRICE = 9;
helpArray.push('Use this option to search for items priced within the specified range.');

function getHelpText(id) {
	if (id < 0 || id >= helpArray.length) {return ""}
	return helpArray[id];
}