yahoo_group_name = '';  // Y!G name, for example:  scarborough-freecycle
group_name = '';  // human friendly name, for example:  Scarborough Freecycle
email_address = ''; // group email address, for example:  scarborough-freecycle@yahoogroups.com

// Different Post types
var messageTypes = [
  "OFFER",
  "TAKEN",
  "WANTED",
  "RECEIVED"
];

// Fair OFFER Policy
SHOW_FOP = 1;           // Display it on the form
SHOW_FOP_SUBJECT = 1;   // 1 means also add " FOP" onto the end of the subject line
SHOW_FOP_BODY = 0;	// 1 means append FOP message to end of message body

// Short item description
FORCE_ITEM_PRESENT = 1;                   // 1 means user HAS to give an item name, 0 means it's optional.
WARN_FOR_ITEM_PRESENT = 1;                // 1 means user will be warned if item name is missing, 0 means no warning.
WARN_FOR_ITEM_LENGTH = 1;                 // 1 means will check for extra long item name, 0 means won't check.
WARN_FOR_ITEM_CAPITALS = 1;               // 1 means will check for lots of capitals in item name, 0 means won't check.
MAXIMUM_ITEM_LENGTH = 70;                 // Warning if item name is greater than 70 characters (if check is enabled)
MAXIMUM_ITEM_CAPS_PERCENTAGE = 80;        // Warning if item name is more than 80% capital letters (if check is enabled)

// Location
FORCE_LOCATION_PRESENT = 1;               // 1 means user HAS to provide a location, 0 means it's optional.
WARN_FOR_LOCATION_PRESENT = 1;            // 1 means user will be warned if location is missing, 0 means no warning.
WARN_FOR_LOCATION_LENGTH = 1;             // 1 means will check for extra long location, 0 means won't check.
WARN_FOR_LOCATION_CAPITALS = 1;           // 1 means will check for lots of capitals in location, 0 means won't check.
MAXIMUM_LOCATION_LENGTH = 35;             // Warning if location is greater than 35 characters (if check is enabled)
MAXIMUM_LOCATION_CAPS_PERCENTAGE = 80;    // Warning if location is more than 80% capital letters (if check is enabled)

// Maximum bodytext length
FORCE_DESCRIPTION_PRESENT = 1;            // 1 means user HAS to provide a description. 0 means it's optional.
WARN_FOR_DESCRIPTION_PRESENT = 1;         // 1 means user will be warned if description is missing, 0 means no warning.
WARN_FOR_DESCRIPTION_LENGTH = 0;          // 1 means will check for extra long description, 0 means won't check.
WARN_FOR_DESCRIPTION_CAPITALS = 1;        // 1 means will check for lots of capitals in description, 0 means won't check.
MAXIMUM_DESCRIPTION_LENGTH = 1000;        // Warning if description is greater than 1000 characters (if check is enabled)
MAXIMUM_DESCRIPTION_CAPS_PERCENTAGE = 80; // Warning if description is more than 80% capital letters (if check is enabled)
