<!--
//event data base java script
//make js with data: end-date-time, url, (maybe height for sizing frame?)
//document.writeln("<br>this is the db pkg");
//set the folowing to see debug output
debug_flag = false;

/* month is 0 to 11!!!  */
	i=0

	date_arr=new Array();	//month of date is 0 to 11!!
	url_arr=new Array();
	high_arr=new Array();	//height of frame as a text string

	date_arr[i]=new Date(2011,4,7,16,30,0);
	url_arr[i]="abouthealing.org/events/mothersday110507.html";
	high_arr[i++]="240";

	date_arr[i]=new Date(2011,3,14,20,30,0);
	url_arr[i]="abouthealing.org/events/lecture110414.html";
	high_arr[i++]="400";

	date_arr[i]=new Date(2012,5,1,20,0,0);
	url_arr[i]="abouthealing.org/events/response.html";
	high_arr[i++]="450";

	date_arr[i]=new Date(2010,11,31,23,30,0);
	url_arr[i]="abouthealing.org/events/firstn101231.html";
	high_arr[i++]="450";

	date_arr[i]=new Date(2012,0,31,16,0,0);
	url_arr[i]="abouthealing.org/events/chat120131.html";
	high_arr[i++]="175";


	date_arr[i]=new Date(2010,6,1,1,2,0);
	url_arr[i]="abouthealing.org/events/new_photo100621.html";
	high_arr[i++]="50";

	date_arr[i]=new Date(2011,10,24,11,30,0);
	url_arr[i]="abouthealing.org/events/thanksgiving11.html";
	high_arr[i++]="250";

	date_arr[i]=new Date(2010,11,7,16,0,0);
	url_arr[i]="abouthealing.org/events/chat101207.html";
	high_arr[i++]="575";


if (debug_flag) document.writeln("<br>the value of i in db pkg:" + i);
-->
