// scrollsetup.js
<!-- 
var scrollcount=10;

var groupname=new String();

var name=new Array();      // Support Group name
var time=new Array();      // Support Group Times
var html=new Array();      // Support Group website page
var addr=new Array();      // Support Group Addresses

var gdate=new Array();  // Assignment in perl generated scrollitems.js
//
// These 3 arrays must be maintained manually
// Array element for each must be assigned: 
//     Name, Time of Meeting, HTML Reference to Groups Page
//     Name is the one used in the Yahoo Calendar -see dbsanova.csv
//

// Disabled Teen Group by putting XXXX in it.
// Support Group Name
name[0]='Teen Depression and Bipolar Support Group';
name[1]='Fairfax Loved Ones Support Group';
// name[2]='Ashburn Bipolar Support Group';
name[2]='Centreville Depression and Bipolar Support Group';
name[3]='Centreville Loved Ones Support Group';
name[4]='Woodbridge Depression and Bipolar Support Group';

// Corresponding meeting times
time[0]='7:00 PM - 9:00 PM';
time[1]='7:00 PM - 9:00 PM';
//time[2]='8:00 PM - 9:30 PM';
time[2]='7:30 PM - 9:00 PM';
time[3]='7:00 PM - 9:00 PM';
time[4]='7:30 PM - 9:00 PM';

// Corresponding page name on the website for the group
html[0]='teens.html';
html[1]='lovedones.html';
//html[2]='ashburn.html';
html[2]='centreville.html';
html[3]='lovedones.html';
html[4]='woodbridge.html';

// Corresponding address of the support group.
addr[0]='10723 Main Street, Fairfax, VA 22030';
addr[1]='10723 Main Street, Fairfax, VA 22030';
//addr[2]='44110 Ashburn Shopping Plaza, Ashburn, VA 20147';
addr[2]='6400 Old Centreville Rd., Centreville, VA 20121';
addr[3]='14369 Round Lick Lane, Centreville, VA 20120';
addr[4]='15941 Donald Curtis Drive, Woodbridge, VA 22191';

-->