/*
 * This file contains functions used on the ticketing forms and information pages
 *
 */

                   /* Title                 min    max  gift                  gift value   */
var sponsorData = [["Other",                  0,    49, "",                   0] 
                  ,["Fan Club",              50,   249, "Restaurant coupons", 0] 
                  ,["Performer",            250,   449, "Two show tickets",   30] 
                  ,["Stage Manager",        500,   999, "Four show tickets",   60]
                  ,["Assistant Director",  1000,  2499, "Two three-play season tickets",   68]
                  ,["Director",            2500,  4999, "Two full season tickets / 2 invitations to special events",   158]
                  ,["Executive Producer",  5000,    -1, "Four full season tickets / 2 invitations to special events",   266]
                  ,["Show Sponsor",        1250,    -1, "",   0]
                  ,["Show Underwriter",    2500,    -1, "",   0]
                  ,["Season Producer",     15000,   -1, "",   0]
                  ];

var sponOther = 0;
var sponFan = 1;
var sponPerformer = 2;
var sponStageMgr = 3;
var sponAsstDir = 4;
var sponDir = 5;
var sponExec = 6;
var sponShowSpon = 7;
var sponShowUnder = 8;
var sponSeasonPro = 9;

var sponIndStart = 0;
var sponIndEnd   = 6;
var sponBusStart = 7;
var sponBusEnd   = 9;

