
//numbers needed for adjustment: the number of states and the number of accredited
//organizations.

//***determined by the inhouse20 database, values are got in function - MakeListsArray()
//numberOfOrgs is the number of records in qryA1QNetworkList
var numberOfOrgs; 
var numberOfStates;
var Lists; 
var states;
//***

var generalOpening;
var stateOpening;
var groupOpening;

var staffContact;
var stateFullName;

function ShowState(stateName)
{
	var stateWindow;
	
	var bottomLink; 
	if (stateName=="Select")
	{
		//do nothing
		return;
	}
	
	if (stateName=="CA")
	{
		//stateWindow=window.open("CALIF.HTM","","");
		location="CALIF.HTM";
		return;
		
	}
	
	MakeListsArray();
	GetStaffContact(stateName);
	
	generalOpening="<p><B>For General Information about Parents Anonymous<sup>®" +
	"</sup> groups in " + stateFullName + ", please contact:</B></p>";

	stateOpening="<p><B>The organization listed below provides Parents " +
	"Anonymous<sup>®</sup> programs statewide. Please contact them to locate " +
	"a Parents Anonymous<sup>®</sup> group or to ask about " +
	"developing a new group in your community.</B></p>";
	
	groupOpening="<p><B>The organizations listed below provide Parents " +
	"Anonymous<sup>®</sup> programs in a multi-county area. Please contact " +
	"them to locate a Parents Anonymous<sup>®</sup> group or to ask about " +
	"developing a new group in your community.</B></p>";
	
	bottomLink="<DT>&nbsp;<DT><HR ALIGN=LEFT>" +
	"<DT><B><FONT SIZE='-2' FACE='Arial'>" +
	"<A HREF='../DEFAULT.ASP'>Home</A> | " +
	"<A HREF='../ABOUT.HTM'>About Us</A>  | " +
	"<A HREF='../Networkpg.htm'>The Network</A> | " +
	"<A HREF='../PARRES.HTM'>Resources  for Parents</A> | " +
	"<A HREF='../INNEWS.HTM'>In the News</A> | " +
	"<A HREF='../VOLUN.HTM'>Volunteer Information</A> | " +
	"<A HREF='../PARTNERS.HTM'>Our Partners</A></FONT></B></DT>";
	
	//stateWindow=window.open("",stateName,"");
	
	//stateWindow.document.open();
	
	document.write("<HTML><HEAD><Title>" + stateName +
	"</Title></HEAD><BODY BGCOLOR='#ffffff'>" +
	"<DL><DT><IMG SRC='pa_black_2001.gif' width=120 height=120 " +
	"ALIGN='LEFT' BORDER=0 NATURALSIZEFLAG=3><DT></DL>" +
	"<H1>&nbsp;</H1>" +
	"<H1><FONT COLOR='#0000ff' FACE='Comic Sans MS'>in " + stateFullName +
	"</FONT></H1><P><br></P>" + 
	"<DL>" +
	MakeContent(stateName)+
	"</DL></Body></HTML>");
	//stateWindow.document.close;
}

function MakeContent(stateName)
{
	var temp; //the content
	var i;    //the counter
	var j;    //the counter
	var listNumber; //the row number of that state in the Lists
	var stateNumber; // the row number of that state in the states
	var listNumberArray; // the list of the row numbers - an array
	var listNumberArrayTotal; //the number of variables in listNumberList
	stateNumber=0;
	listNumber=0;
	
	for (i=1;i<=numberOfOrgs;i++)
	{
		if (Lists[10][i]==stateName)
		{
			listNumber=i;
			break;
		}
	}
	
	if (listNumber==0)	
	//there is no accredited organization for this state
	{
		temp=generalOpening + "<p>" + staffContact + "</P>";
		return temp;	
	}
	
	//there is at least one accredited organization for this state
	
	if (Lists[2][listNumber]=="State")
	//this is a statewide organization
	{
		temp=stateOpening + GetOrganizationInfo(listNumber);
		return temp;
	}
	
	//this is not a statewide organization
	//get the list of listNumber first
	listNumberArray=new Array();
	j=0;
	for (i=1;i<=numberOfOrgs;i++)
	{
		if (Lists[10][i]==stateName)
		{
			j++;
			listNumberArray[j]=i;
		}
	}
	listNumberArrayTotal=j;
	
	temp=generalOpening + "<p>" + staffContact + "</p> <p>" + groupOpening + "</p>";
	for (j=1; j<=listNumberArrayTotal; j++)
	{
		temp=temp + GetOrganizationInfo(listNumberArray[j]);
	}
	return temp;
}

function GetOrganizationInfo(i)
{
	//i is the listNumber
	var orgName;
	var contactPerson;
	var phone;
	var emailAddress;
	var webAddress;
	
	emailAddress = ""
	webAddress = ""
	
	if (Lists[4][i]=="")
	{
		orgName=Lists[3][i];
	}
	else
	{

		orgName=Lists[3][i]+"<br>"+Lists[4][i];
	}

	if (Lists[7][i]=="")
	{
		contactPerson=Lists[6][i];
	}
	else
	{
		contactPerson=Lists[6][i]+"<br>"+Lists[7][i];
	}

	if (Lists[13][i]=="")
	{
		phone=Lists[12][i];
	}
	else
	{
		phone=Lists[12][i]+" Ext. "+Lists[13][i];
	}

	if (Lists[15][i]!="")
	{
		emailAddress="<br>E-mail:&nbsp; <a href='mailto:" + Lists[15][i] + "'>" +
        Lists[15][i] + "</a>";
	}

	if (Lists[5][i]!="")
	{
		webAddress="<br>Web Site:&nbsp; <a href='http://" + Lists[5][i] + "'>" +
        Lists[5][i] + "</a>";
	}


	temp="<p>" + orgName + "<br>" + contactPerson + "<br>" + Lists[8][i]
	+ "<br>" + Lists[9][i]+ ", " + Lists[10][i] + " " + Lists[11][i] + "<br>TEL: " +
	phone + "  FAX: " + Lists[14][i] + emailAddress + webAddress; 
	
	if (Lists[18][i]!="")
	{
		temp=temp + "<br>Help Line:<br>" + Lists[18][i] + "</p>";
	}
	else
	{
		temp=temp + "</p>";
	}
	
	return temp;
}


function GetStaffContact(stateName)
{
	var i;
	
	//53 states
	for (i=1;i<=numberOfStates;i++)
	{
		if (states[1][i]==stateName)
		{
			staffContact=states[2][i];
			stateFullName=states[3][i];
			break;
		}
	}

}

function MakeListsArray()
{
	Lists=new Array();
	states=new Array();
	var i;

	numberOfOrgs=32; 
	numberOfStates=53;
	
	//18 fields
	for (i=0;i<=18; i++)
	{
		Lists[i]=new Array();
	}
	
	//copy and paste listArray here
	
 Lists[1][0]="AffiliateID";  Lists[2][0]="OrganizationType";  Lists[3][0]="PAName";  Lists[4][0]="AssociatedWith";  Lists[5][0]="WebAddress";  Lists[6][0]="ContactName";  Lists[7][0]="ContactTitle";  Lists[8][0]="Address";  Lists[9][0]="City";  Lists[10][0]="State";  Lists[11][0]="Zip";  Lists[12][0]="Phone";  Lists[13][0]="EXT";  Lists[14][0]="FAX";  Lists[15][0]="Email";  Lists[16][0]="StateFullName";  Lists[17][0]="StaffID";  Lists[18][0]="Help Lines";
  Lists[1][1]="AK11";  Lists[2][1]="Regional";  Lists[3][1]="Parents Anonymous<sup>®</sup> of Juneau, Alaska";  Lists[4][1]="Catholic Community Service";  Lists[5][1]="www.catholiccommunityservices.alaska.com";  Lists[6][1]="Helen Kalk";  Lists[7][1]="Parents Anonymous® Coordinator";  Lists[8][1]="8617 Teal Street";  Lists[9][1]="Juneau";  Lists[10][1]="AK";  Lists[11][1]="99801";  Lists[12][1]="(907) 463-6183";  Lists[13][1]="";  Lists[14][1]="(907) 790-2149";  Lists[15][1]="helen.kalk@ccsjuneau.org";  Lists[16][1]="Alaska";  Lists[17][1]="46";  Lists[18][1]="<DT>(907) 790-4102</DT>";
  Lists[1][2]="AK12";  Lists[2][2]="Regional";  Lists[3][2]="Parents Anonymous<sup>®</sup> of Anchorage and Fairbanks, Alaska";  Lists[4][2]="PARENTS, Inc.";  Lists[5][2]="www.parentsinc.org";  Lists[6][2]="Faye Nieto";  Lists[7][2]="Executive Director";  Lists[8][2]="4743 E. Northern Lights Blvd.";  Lists[9][2]="Anchorage";  Lists[10][2]="AK";  Lists[11][2]="99508";  Lists[12][2]="(907) 337-7678";  Lists[13][2]="";  Lists[14][2]="(907) 337-7671";  Lists[15][2]="nieto@parentsinc.org";  Lists[16][2]="Alaska";  Lists[17][2]="46";  Lists[18][2]="<DT>(800) 478-7678</DT>";
  Lists[1][3]="AR11";  Lists[2][3]="State";  Lists[3][3]="Parents Anonymous<sup>®</sup> of Arkansas";  Lists[4][3]="SCAN Volunteer Service, Inc.";  Lists[5][3]="www.scan-ar.com";  Lists[6][3]="Linda Bateman";  Lists[7][3]="Executive Director";  Lists[8][3]="1301 Scott Street";  Lists[9][3]="Little Rock";  Lists[10][3]="AR";  Lists[11][3]="72202";  Lists[12][3]="(501) 372-7226";  Lists[13][3]="";  Lists[14][3]="(501) 375-7329";  Lists[15][3]="lfbateman@aol.com";  Lists[16][3]="Arkansas";  Lists[17][3]="46";  Lists[18][3]="<DT>(501) 372-7226<br>(501) 751-5140<br>(501) 773-8271<br>(501) 785-4046<br>(501) 932-6610<br>(870) 536-7740<br>(870) 763-0806<br>(888) 567-7226</DT>";
  Lists[1][4]="AZ11";  Lists[2][4]="State";  Lists[3][4]="Parents Anonymous<sup>®</sup> of Arizona, Inc.";  Lists[4][4]="";  Lists[5][4]="www.parentsanon.org";  Lists[6][4]="Kim Hill-Olsen";  Lists[7][4]="Regional Program Director";  Lists[8][4]="202 S. First Ave. # 103";  Lists[9][4]="Yuma";  Lists[10][4]="AZ";  Lists[11][4]="85364";  Lists[12][4]="(928) 329-7372";  Lists[13][4]="";  Lists[14][4]="(928) 329-0096";  Lists[15][4]="hillolsenk@parentsanon.org";  Lists[16][4]="Arizona";  Lists[17][4]="45";  Lists[18][4]="<DT>(800) 352-0528</DT>";
  Lists[1][5]="CA11";  Lists[2][5]="State";  Lists[3][5]="Parents Anonymous<sup>®</sup> Inc.";  Lists[4][5]="";  Lists[5][5]="www.parentsanonymous.org";  Lists[6][5]="Tina Pedersen";  Lists[7][5]="Senior Program Coordinator";  Lists[8][5]="675 W. Foothill Blvd., Suite 220";  Lists[9][5]="Claremont";  Lists[10][5]="CA";  Lists[11][5]="91711-3475";  Lists[12][5]="(909) 621-6184";  Lists[13][5]="212";  Lists[14][5]="(909) 621-0614";  Lists[15][5]="tpedersen@parentsanonymous.org";  Lists[16][5]="California";  Lists[17][5]="40";  Lists[18][5]="";
  Lists[1][6]="DC11";  Lists[2][6]="Regional";  Lists[3][6]="Parents Anonymous<sup>®</sup> of The District of Columbia";  Lists[4][6]="D.C. Children's Trust Fund";  Lists[5][6]="www.dcctf.org";  Lists[6][6]="Kinaya Sokoya";  Lists[7][6]="Executive Director";  Lists[8][6]="2021 L Street NW, Suite 205";  Lists[9][6]="Washington";  Lists[10][6]="DC";  Lists[11][6]="20036";  Lists[12][6]="(202) 624-5555";  Lists[13][6]="";  Lists[14][6]="(202) 624-0396";  Lists[15][6]="ksokoya@dcctf.org";  Lists[16][6]="District of Columbia";  Lists[17][6]="44";  Lists[18][6]="<DT>(202) 223-2255<br>(202) 624-5555<br>(202) 671-7233</DT>";
  Lists[1][7]="DE11";  Lists[2][7]="State";  Lists[3][7]="Parents Anonymous<sup>®</sup> of Delaware";  Lists[4][7]="Delaware Ecumenical Council on Children & Families";  Lists[5][7]="None";  Lists[6][7]="Robert Hall";  Lists[7][7]="Executive Director";  Lists[8][7]="240 North James Street, Suite B1B";  Lists[9][7]="Wilmington";  Lists[10][7]="DE";  Lists[11][7]="19804";  Lists[12][7]="(302) 225-1040";  Lists[13][7]="";  Lists[14][7]="(302) 225-1041";  Lists[15][7]="deccf@aol.com";  Lists[16][7]="Delaware";  Lists[17][7]="45";  Lists[18][7]="<DT>(302) 225-3011<br>(800) 273-9500<br>(800) 464-4357</DT>";
  Lists[1][8]="FL13";  Lists[2][8]="Regional";  Lists[3][8]="Parents Anonymous<sup>®</sup> of Central Florida";  Lists[4][8]="Family Services of Central Florida, Inc.";  Lists[5][8]="www.cbfamilies.org";  Lists[6][8]="Dan McCormick";  Lists[7][8]="Director of Community Relations";  Lists[8][8]="1300 West Citizens Blvd., Suite 200";  Lists[9][8]="Leesburg";  Lists[10][8]="FL";  Lists[11][8]="34748";  Lists[12][8]="(352) 728-1117";  Lists[13][8]="";  Lists[14][8]="(352) 326-2506";  Lists[15][8]="dmccormick@cbfamilies.org";  Lists[16][8]="Florida";  Lists[17][8]="45";  Lists[18][8]="";
  Lists[1][9]="IA12";  Lists[2][9]="Regional";  Lists[3][9]="Parents Anonymous<sup>®</sup> of Iowa, Inc.";  Lists[4][9]="";  Lists[5][9]="www.parentsanonymous.org";  Lists[6][9]="Sue Renfrow";  Lists[7][9]="Executive Director";  Lists[8][9]="1228 8th Street, Suite 201";  Lists[9][9]="Des Moines";  Lists[10][9]="IA";  Lists[11][9]="50265";  Lists[12][9]="(515) 255-9490";  Lists[13][9]="";  Lists[14][9]="(515) 279-5163";  Lists[15][9]="SJRenf6301@aol.com";  Lists[16][9]="Iowa";  Lists[17][9]="44";  Lists[18][9]="<DT>(515) 246-6555<br>(515) 288-1981<br>(515) 883-1863<br>(800) 422-4453</DT>";
  Lists[1][10]="IA13";  Lists[2][10]="Regional";  Lists[3][10]="Parents Anonymous<sup>®</sup> of Webster County, Iowa";  Lists[4][10]="Family Development Council";  Lists[5][10]="None";  Lists[6][10]="Tom Dunbar";  Lists[7][10]="Parents Anonymous® Coordinator";  Lists[8][10]="612 C Street";  Lists[9][10]="Fort Dodge";  Lists[10][10]="IA";  Lists[11][10]="50501";  Lists[12][10]="(515) 955-4803";  Lists[13][10]="";  Lists[14][10]="(515) 955-3229";  Lists[15][10]="parwebco@frontiernet.net";  Lists[16][10]="Iowa";  Lists[17][10]="46";  Lists[18][10]="<DT>(515) 955-3229</DT>";
  Lists[1][11]="IL13";  Lists[2][11]="";  Lists[3][11]="";  Lists[4][11]="Uhlich Children's home";  Lists[5][11]="www.uhlich.org";  Lists[6][11]="Dee Flynn";  Lists[7][11]="TPSN Supervisor of Training & Communications";  Lists[8][11]="3737 North Mozart";  Lists[9][11]="Chicago";  Lists[10][11]="IL";  Lists[11][11]="60618";  Lists[12][11]="(773) 588-0180";  Lists[13][11]="";  Lists[14][11]="(773) 588-5386";  Lists[15][11]="flynnd@uhlich.org";  Lists[16][11]="Illinois";  Lists[17][11]="45";  Lists[18][11]="";
  Lists[1][12]="KY14";  Lists[2][12]="Regional";  Lists[3][12]="Parents Anonymous<sup>®</sup> of South Eastern Kentucky";  Lists[4][12]="Cumberland River Comprehensive Care Center";  Lists[5][12]="None";  Lists[6][12]="Dreama Storer";  Lists[7][12]="Program Coordinator";  Lists[8][12]="240 Bennett Circle";  Lists[9][12]="London";  Lists[10][12]="KY";  Lists[11][12]="40741";  Lists[12][12]="(606) 862-6809";  Lists[13][12]="";  Lists[14][12]="(606) 862-6809";  Lists[15][12]="tricomentoring@juno.com";  Lists[16][12]="Kentucky";  Lists[17][12]="46";  Lists[18][12]="<DT>(606) 523-9386<br>(606) 526-9598<br>(606) 528-7018</DT>";
  Lists[1][13]="MD11";  Lists[2][13]="State";  Lists[3][13]="Parents Anonymous<sup>®</sup> of Maryland";  Lists[4][13]="The Family Tree";  Lists[5][13]="www.familytreemd.org";  Lists[6][13]="Sue Bull";  Lists[7][13]="Assistant Director of Community Services";  Lists[8][13]="2108 N. Charles Street";  Lists[9][13]="Baltimore";  Lists[10][13]="MD";  Lists[11][13]="21218";  Lists[12][13]="(410) 889-2300";  Lists[13][13]="1205";  Lists[14][13]="(410) 637-8385";  Lists[15][13]="sbull@familytreemd.org";  Lists[16][13]="Maryland";  Lists[17][13]="45";  Lists[18][13]="<DT>(800) 273-7337</DT>";
  Lists[1][14]="MI11";  Lists[2][14]="Group";  Lists[3][14]="Parents Anonymous<sup>®</sup> of Kalamazoo, Michigan";  Lists[4][14]="Family & Children's Services";  Lists[5][14]="None";  Lists[6][14]="Sandy Hall";  Lists[7][14]="HCI Director";  Lists[8][14]="1608 Lake Street";  Lists[9][14]="Kalamazoo";  Lists[10][14]="MI";  Lists[11][14]="49001";  Lists[12][14]="(269) 344-0202";  Lists[13][14]="229";  Lists[14][14]="(269) 373-2939";  Lists[15][14]="sandyh@fcsource.org";  Lists[16][14]="Michigan";  Lists[17][14]="45";  Lists[18][14]="<DT>(616) 344-0202<br>(616) 965-3247</DT>";
  Lists[1][15]="MO13";  Lists[2][15]="Regional";  Lists[3][15]="Parents Anonymous<sup>®</sup> of St. Louis, Missouri";  Lists[4][15]="Family Support Council";  Lists[5][15]="www.fscouncil.org";  Lists[6][15]="Belinda James";  Lists[7][15]="Parents Anonymous® Coordinator";  Lists[8][15]="1111 Olive Street";  Lists[9][15]="St. Louis";  Lists[10][15]="MO";  Lists[11][15]="63101-1951";  Lists[12][15]="(314) 539-4052";  Lists[13][15]="";  Lists[14][15]="(314) 539-4051";  Lists[15][15]="bjames@fscouncil.org";  Lists[16][15]="Missouri";  Lists[17][15]="46";  Lists[18][15]="<DT>(314) 647-4357<br>(866) 492-0843</DT>";
  Lists[1][16]="MP11";  Lists[2][16]="Regional";  Lists[3][16]="Parents Anonymous<sup>®</sup> of the Commonwealth of The Northern Mariana Islands";  Lists[4][16]="Division of Youth Services";  Lists[5][16]="None";  Lists[6][16]="Connie Cabrera";  Lists[7][16]="Parent Education Coordinator";  Lists[8][16]="P.O. Box 501000 Chalan Kanoa";  Lists[9][16]="Saipan";  Lists[10][16]="MP";  Lists[11][16]="96950";  Lists[12][16]="(670) 664-2550";  Lists[13][16]="";  Lists[14][16]="(670) 664-2560";  Lists[15][16]="conniecabrera2002@yahoo.com";  Lists[16][16]="Northern Marianna Islands";  Lists[17][16]="45";  Lists[18][16]="";
  Lists[1][17]="NC12";  Lists[2][17]="Regional";  Lists[3][17]="Parents Anonymous<sup>®</sup> of Wayne County, North Carolina";  Lists[4][17]="Wayne Uplift Resource Association, Inc.";  Lists[5][17]="None";  Lists[6][17]="Linda Holden-Cox";  Lists[7][17]="Director";  Lists[8][17]="P. O. Box 1518";  Lists[9][17]="Goldsboro";  Lists[10][17]="NC";  Lists[11][17]="27533-1518";  Lists[12][17]="(919) 735-4262";  Lists[13][17]="";  Lists[14][17]="(919) 735-2625";  Lists[15][17]="uplift@esn.net";  Lists[16][17]="North Carolina";  Lists[17][17]="45";  Lists[18][17]="<DT>(888) 790-6395</DT>";
  Lists[1][18]="NH11";  Lists[2][18]="State";  Lists[3][18]="Parents Anonymous<sup>®</sup> of New Hampshire";  Lists[4][18]="Prevent Child Abuse New Hampshire";  Lists[5][18]="www.pcanh.org";  Lists[6][18]="Cheryl Avery Molloy";  Lists[7][18]="Executive Director";  Lists[8][18]="4 Bicentennial Sq. Suite 3-A";  Lists[9][18]="Concord";  Lists[10][18]="NH";  Lists[11][18]="03301";  Lists[12][18]="(603) 225-5441";  Lists[13][18]="";  Lists[14][18]="(603) 228-5322";  Lists[15][18]="c.averymolloy@juno.com";  Lists[16][18]="New Hampshire";  Lists[17][18]="44";  Lists[18][18]="<DT>(800) 244-5373</DT>";
  Lists[1][19]="NJ11";  Lists[2][19]="State";  Lists[3][19]="Parents Anonymous<sup>®</sup> of New Jersey, Inc.";  Lists[4][19]="";  Lists[5][19]="www.pa-of-nj.org";  Lists[6][19]="Kathleen Roe";  Lists[7][19]="Executive Director";  Lists[8][19]="12 Roszel Road, Suite A-103";  Lists[9][19]="Princeton";  Lists[10][19]="NJ";  Lists[11][19]="08540";  Lists[12][19]="(609) 243-9779";  Lists[13][19]="";  Lists[14][19]="(609) 243-0169";  Lists[15][19]="kroepanj@aol.com";  Lists[16][19]="New Jersey";  Lists[17][19]="44";  Lists[18][19]="<DT>(800) 843-5437</DT>";
  Lists[1][20]="NM12";  Lists[2][20]="Regional";  Lists[3][20]="Parents Anonymous<sup>®</sup> of Curry and Roosevelt Counties, New Mexico";  Lists[4][20]="Youth Opportunities Unlimited";  Lists[5][20]="None";  Lists[6][20]="Dawn Pivonka";  Lists[7][20]="Executive Director";  Lists[8][20]="414 Mitchell";  Lists[9][20]="Clovis";  Lists[10][20]="NM";  Lists[11][20]="88101";  Lists[12][20]="(505) 762-8385";  Lists[13][20]="";  Lists[14][20]="(505) 762-9037";  Lists[15][20]="youdirector@zianet.com";  Lists[16][20]="New Mexico";  Lists[17][20]="46";  Lists[18][20]="";
  Lists[1][21]="NY14";  Lists[2][21]="Group";  Lists[3][21]="Parents Anonymous<sup>®</sup> of New York City, New York";  Lists[4][21]="";  Lists[5][21]="None";  Lists[6][21]="Hylda Clarke";  Lists[7][21]="";  Lists[8][21]="519 W. 150th Street";  Lists[9][21]="New York";  Lists[10][21]="NY";  Lists[11][21]="10032";  Lists[12][21]="(212) 690-0217";  Lists[13][21]="";  Lists[14][21]="";  Lists[15][21]="hyldac@aol.com";  Lists[16][21]="New York";  Lists[17][21]="46";  Lists[18][21]="";
  Lists[1][22]="NY15";  Lists[2][22]="Regional";  Lists[3][22]="Parents Anonymous<sup>®</sup> of Northeastern New York";  Lists[4][22]="YWCA of Schenectady";  Lists[5][22]="www.ywcaschenectady.org";  Lists[6][22]="Carole Fox";  Lists[7][22]="Certified Trainerr";  Lists[8][22]="44 Washington Avenue";  Lists[9][22]="Schenectady";  Lists[10][22]="NY";  Lists[11][22]="12305";  Lists[12][22]="(518) 374-3394";  Lists[13][22]="";  Lists[14][22]="(518) 374-3385";  Lists[15][22]="counseling@ywca-schenectady.org";  Lists[16][22]="New York";  Lists[17][22]="46";  Lists[18][22]="<DT>(800) 342-7472</DT>";
  Lists[1][23]="NY16";  Lists[2][23]="Regional";  Lists[3][23]="Parents Anonymous<sup>®</sup> of Plattsburgh, New York";  Lists[4][23]="Child Care Coordinating Council of the North Country, Inc.";  Lists[5][23]="None";  Lists[6][23]="Jamie Basiliere";  Lists[7][23]="Executive Director";  Lists[8][23]="P.O.Box 2640";  Lists[9][23]="Plattsburgh";  Lists[10][23]="NY";  Lists[11][23]="12901";  Lists[12][23]="(518) 561-4999";  Lists[13][23]="";  Lists[14][23]="(518) 561-6956";  Lists[15][23]="jamie@primelink1.net";  Lists[16][23]="New York";  Lists[17][23]="46";  Lists[18][23]="<DT>(800) 540-2273<br>(800) 894-7504</DT>";
  Lists[1][24]="NY17";  Lists[2][24]="Regional";  Lists[3][24]="Parents Anonymous<sup>®</sup> of Cortland County";  Lists[4][24]="Catholic Charities";  Lists[5][24]="None";  Lists[6][24]="Josephine Caratelli";  Lists[7][24]="Parents Anonymous® Coordinator";  Lists[8][24]="33-35 Central Avenue";  Lists[9][24]="Cortland";  Lists[10][24]="NY";  Lists[11][24]="13045";  Lists[12][24]="(607) 756-5992";  Lists[13][24]="";  Lists[14][24]="(607) 756-5999";  Lists[15][24]="jolebowitz@hotmail.com";  Lists[16][24]="New York";  Lists[17][24]="46";  Lists[18][24]="";
  Lists[1][25]="OH13";  Lists[2][25]="Regional";  Lists[3][25]="Parents Anonymous<sup>®</sup> of Stark County, Ohio";  Lists[4][25]="Families First of Stark County";  Lists[5][25]="None";  Lists[6][25]="Shirley Szabo";  Lists[7][25]="Parents Anonymous® Director";  Lists[8][25]="1327 Market Avenue N.,  Suite 100";  Lists[9][25]="Canton";  Lists[10][25]="OH";  Lists[11][25]="44714";  Lists[12][25]="(330) 456-5470";  Lists[13][25]="";  Lists[14][25]="(330) 456-5841";  Lists[15][25]="starkpa@aol.com";  Lists[16][25]="Ohio";  Lists[17][25]="45";  Lists[18][25]="<DT>(330) 452-6000</DT>";
  Lists[1][26]="OH15";  Lists[2][26]="Regional";  Lists[3][26]="Parents Anonymous<sup>®</sup> of Central Ohio";  Lists[4][26]="Catholic Social Services";  Lists[5][26]="www.colscss.org";  Lists[6][26]="Lucy Cormier";  Lists[7][26]="Parents Anonymous® Program Director";  Lists[8][26]="197 E. Gay Street";  Lists[9][26]="Columbus";  Lists[10][26]="OH";  Lists[11][26]="43215";  Lists[12][26]="(614) 221-5891";  Lists[13][26]="237";  Lists[14][26]="(614) 228-1125";  Lists[15][26]="lcormier@colscss.org";  Lists[16][26]="Ohio";  Lists[17][26]="45";  Lists[18][26]="<DT>(614) 221-5891<br>(800) 536-5891</DT>";
  Lists[1][27]="OR11";  Lists[2][27]="State";  Lists[3][27]="Parents Anonymous<sup>®</sup> of Oregon";  Lists[4][27]="Morrison Center Child & Family Services";  Lists[5][27]="www.morrisoncenter.org";  Lists[6][27]="Ruth Taylor";  Lists[7][27]="Program Director";  Lists[8][27]="4945 NE 7th Avenue";  Lists[9][27]="Portland";  Lists[10][27]="OR";  Lists[11][27]="97211";  Lists[12][27]="(503) 258-4568";  Lists[13][27]="";  Lists[14][27]="(503) 493-2656";  Lists[15][27]="rtaylor@morrisoncenter.org";  Lists[16][27]="Oregon";  Lists[17][27]="45";  Lists[18][27]="<DT>(503) 452-4789<br>(800) 345-5044</DT>";
  Lists[1][28]="PA11";  Lists[2][28]="State";  Lists[3][28]="Parents Anonymous<sup>®</sup> of Pennsylvania, Inc.";  Lists[4][28]="";  Lists[5][28]="www.parentsanonymousofpa.org";  Lists[6][28]="Angela Fogle";  Lists[7][28]="Executive Director";  Lists[8][28]="2001 North Front Street, Bldg 1, Suite 210";  Lists[9][28]="Harrisburg";  Lists[10][28]="PA";  Lists[11][28]="17102";  Lists[12][28]="(717) 238-0937";  Lists[13][28]="";  Lists[14][28]="(717) 238-4315";  Lists[15][28]="afogle@parentsanonymousofpa.org";  Lists[16][28]="Pennsylvania";  Lists[17][28]="44";  Lists[18][28]="<DT>(800) 448-4906</DT>";
  Lists[1][29]="SC11";  Lists[2][29]="State";  Lists[3][29]="Parents Anonymous<sup>®</sup> of South Carolina, Inc.";  Lists[4][29]="";  Lists[5][29]="www.parentsanonymousofsc.org";  Lists[6][29]="Marty Banks";  Lists[7][29]="Executive Director";  Lists[8][29]="P.O. Box 80099";  Lists[9][29]="Charleston";  Lists[10][29]="SC";  Lists[11][29]="29416";  Lists[12][29]="(843) 747-0480";  Lists[13][29]="1";  Lists[14][29]="(843) 747-0890";  Lists[15][29]="martybanks@aol.com";  Lists[16][29]="South Carolina";  Lists[17][29]="45";  Lists[18][29]="<DT>(800) 326-8621<br>(843) 747-0480</DT>";
  Lists[1][30]="TX17";  Lists[2][30]="";  Lists[3][30]="Parents Anonymous<sup>®</sup> of Northeast Texas";  Lists[4][30]="Northeast Texas Child Advocacy Center, Inc.";  Lists[5][30]="www.netcac.org";  Lists[6][30]="Jerry Edwards";  Lists[7][30]="Executive Director";  Lists[8][30]="P.O. Box 484";  Lists[9][30]="Winnsboro";  Lists[10][30]="TX";  Lists[11][30]="75494";  Lists[12][30]="(903) 629-7588";  Lists[13][30]="";  Lists[14][30]="(903) 629-7590";  Lists[15][30]="jedwards@netcac.org";  Lists[16][30]="Texas";  Lists[17][30]="45";  Lists[18][30]="";
  Lists[1][31]="UT11";  Lists[2][31]="Regional";  Lists[3][31]="Parents Anonymous<sup>®</sup> of Murray & Midvale, Utah";  Lists[4][31]="Boys & Girls Club of Murray & Midvale";  Lists[5][31]="None";  Lists[6][31]="Pat Cox";  Lists[7][31]="Grant Manager";  Lists[8][31]="PO Box 57071";  Lists[9][31]="Murray";  Lists[10][31]="UT";  Lists[11][31]="84157";  Lists[12][31]="(801) 284-4259";  Lists[13][31]="";  Lists[14][31]="(801) 288-2225";  Lists[15][31]="Patricox@yahoo.com";  Lists[16][31]="Utah";  Lists[17][31]="46";  Lists[18][31]="";
  Lists[1][32]="WI13";  Lists[2][32]="Regional";  Lists[3][32]="Parents Anonymous<sup>®</sup> of Washington County, Wisconsin";  Lists[4][32]="The Youth and Family Project, Inc.";  Lists[5][32]="www.youthandfamilyproject.org";  Lists[6][32]="Joy Breese";  Lists[7][32]="Program Director";  Lists[8][32]="139 N. Main Street, Suite 111";  Lists[9][32]="West Bend";  Lists[10][32]="WI";  Lists[11][32]="53095";  Lists[12][32]="(262) 338-1661";  Lists[13][32]="";  Lists[14][32]="(262) 338-7761";  Lists[15][32]="jbreese@excel.net";  Lists[16][32]="Wisconsin";  Lists[17][32]="45";  Lists[18][32]="<DT>(800) 924-3555</DT>";

	//copy and paste the stateArray here

states[1]=new Array();  states[2]=new Array();   states[3]=new Array();
states[1][0]="State";  states[2][0]="Staff Contact";  states[3][0]="State Full Name";
  states[1][1]="AK";   states[3][1]="Alaska";   states[2][1]="Flora Sherman, MA<br>Sr. Program Associate<br>Parents Anonymous<sup>®</sup> Inc.<br>675 W. Foothill Blvd. Suite 220<br>Claremont, CA 91711<br>TEL: (909) 621-9184 ext. 218 FAX:(909) 625-6304<br>E-mail:&nbsp; <a href='mailto:fsherman@parentsanonymous.org'>fsherman@parentsanonymous.org</a>"; 
  states[1][2]="AL";   states[3][2]="Alabama";   states[2][2]="Stacey Alameda, MSW, LCSW<br>Sr. Program Coordinator<br>Parents Anonymous<sup>®</sup> Inc.<br>675 W. Foothill Blvd., Suite 220<br>Claremont, CA 91711<br>TEL: (909) 621-6184 ext. 222 FAX:(909) 625-6304<br>E-mail:&nbsp; <a href='mailto:salameda@parentsanonymous.org'>salameda@parentsanonymous.org</a>"; 
  states[1][3]="AR";   states[3][3]="Arkansas";   states[2][3]="Flora Sherman, MA<br>Sr. Program Associate<br>Parents Anonymous<sup>®</sup> Inc.<br>675 W. Foothill Blvd. Suite 220<br>Claremont, CA 91711<br>TEL: (909) 621-9184 ext. 218 FAX:(909) 625-6304<br>E-mail:&nbsp; <a href='mailto:fsherman@parentsanonymous.org'>fsherman@parentsanonymous.org</a>"; 
  states[1][4]="AZ";   states[3][4]="Arizona";   states[2][4]="Stacey Alameda, MSW, LCSW<br>Sr. Program Coordinator<br>Parents Anonymous<sup>®</sup> Inc.<br>675 W. Foothill Blvd., Suite 220<br>Claremont, CA 91711<br>TEL: (909) 621-6184 ext. 222 FAX:(909) 625-6304<br>E-mail:&nbsp; <a href='mailto:salameda@parentsanonymous.org'>salameda@parentsanonymous.org</a>"; 
  states[1][5]="CA";   states[3][5]="California";   states[2][5]="Tina Pedersen, MSW, LCSW<br>CA Sr. Program Coordinator<br>Parents Anonymous<sup>®</sup> Inc.<br>675 w. Foothill Blvd. Suite 220<br>Claremont, CA 91711<br>TEL: (909) 621-6184 ext. 212 FAX:(909) 625-6304<br>E-mail:&nbsp; <a href='mailto:tpedersen@parentsanonymous.org'>tpedersen@parentsanonymous.org</a>"; 
  states[1][6]="CO";   states[3][6]="Colorado";   states[2][6]="Stacey Alameda, MSW, LCSW<br>Sr. Program Coordinator<br>Parents Anonymous<sup>®</sup> Inc.<br>675 W. Foothill Blvd., Suite 220<br>Claremont, CA 91711<br>TEL: (909) 621-6184 ext. 222 FAX:(909) 625-6304<br>E-mail:&nbsp; <a href='mailto:salameda@parentsanonymous.org'>salameda@parentsanonymous.org</a>"; 
  states[1][7]="CT";   states[3][7]="Connecticut";   states[2][7]="Stacey Alameda, MSW, LCSW<br>Sr. Program Coordinator<br>Parents Anonymous<sup>®</sup> Inc.<br>675 W. Foothill Blvd., Suite 220<br>Claremont, CA 91711<br>TEL: (909) 621-6184 ext. 222 FAX:(909) 625-6304<br>E-mail:&nbsp; <a href='mailto:salameda@parentsanonymous.org'>salameda@parentsanonymous.org</a>"; 
  states[1][8]="DC";   states[3][8]="District of Columbia";   states[2][8]="Sandra Williams, PhD<br>VP of Programs<br>Parents Anonymous<sup>®</sup> Inc.<br>675 West Foothill Blvd, Suite 220<br>Claremont, CA 91711-3475<br>TEL: (909) 621-6184 ext. 216 FAX:(909) 625-6304<br>E-mail:&nbsp; <a href='mailto:swilliams@parentsanonymous.org'>swilliams@parentsanonymous.org</a>"; 
  states[1][9]="DE";   states[3][9]="Delaware";   states[2][9]="Stacey Alameda, MSW, LCSW<br>Sr. Program Coordinator<br>Parents Anonymous<sup>®</sup> Inc.<br>675 W. Foothill Blvd., Suite 220<br>Claremont, CA 91711<br>TEL: (909) 621-6184 ext. 222 FAX:(909) 625-6304<br>E-mail:&nbsp; <a href='mailto:salameda@parentsanonymous.org'>salameda@parentsanonymous.org</a>"; 
  states[1][10]="FL";   states[3][10]="Florida";   states[2][10]="Stacey Alameda, MSW, LCSW<br>Sr. Program Coordinator<br>Parents Anonymous<sup>®</sup> Inc.<br>675 W. Foothill Blvd., Suite 220<br>Claremont, CA 91711<br>TEL: (909) 621-6184 ext. 222 FAX:(909) 625-6304<br>E-mail:&nbsp; <a href='mailto:salameda@parentsanonymous.org'>salameda@parentsanonymous.org</a>"; 
  states[1][11]="GA";   states[3][11]="Georgia";   states[2][11]="Stacey Alameda, MSW, LCSW<br>Sr. Program Coordinator<br>Parents Anonymous<sup>®</sup> Inc.<br>675 W. Foothill Blvd., Suite 220<br>Claremont, CA 91711<br>TEL: (909) 621-6184 ext. 222 FAX:(909) 625-6304<br>E-mail:&nbsp; <a href='mailto:salameda@parentsanonymous.org'>salameda@parentsanonymous.org</a>"; 
  states[1][12]="HI";   states[3][12]="Hawaii";   states[2][12]="Stacey Alameda, MSW, LCSW<br>Sr. Program Coordinator<br>Parents Anonymous<sup>®</sup> Inc.<br>675 W. Foothill Blvd., Suite 220<br>Claremont, CA 91711<br>TEL: (909) 621-6184 ext. 222 FAX:(909) 625-6304<br>E-mail:&nbsp; <a href='mailto:salameda@parentsanonymous.org'>salameda@parentsanonymous.org</a>"; 
  states[1][13]="IA";   states[3][13]="Iowa";   states[2][13]="Flora Sherman, MA<br>Sr. Program Associate<br>Parents Anonymous<sup>®</sup> Inc.<br>675 W. Foothill Blvd. Suite 220<br>Claremont, CA 91711<br>TEL: (909) 621-9184 ext. 218 FAX:(909) 625-6304<br>E-mail:&nbsp; <a href='mailto:fsherman@parentsanonymous.org'>fsherman@parentsanonymous.org</a>"; 
  states[1][14]="ID";   states[3][14]="Idaho";   states[2][14]="Stacey Alameda, MSW, LCSW<br>Sr. Program Coordinator<br>Parents Anonymous<sup>®</sup> Inc.<br>675 W. Foothill Blvd., Suite 220<br>Claremont, CA 91711<br>TEL: (909) 621-6184 ext. 222 FAX:(909) 625-6304<br>E-mail:&nbsp; <a href='mailto:salameda@parentsanonymous.org'>salameda@parentsanonymous.org</a>"; 
  states[1][15]="IL";   states[3][15]="Illinois";   states[2][15]="Stacey Alameda, MSW, LCSW<br>Sr. Program Coordinator<br>Parents Anonymous<sup>®</sup> Inc.<br>675 W. Foothill Blvd., Suite 220<br>Claremont, CA 91711<br>TEL: (909) 621-6184 ext. 222 FAX:(909) 625-6304<br>E-mail:&nbsp; <a href='mailto:salameda@parentsanonymous.org'>salameda@parentsanonymous.org</a>"; 
  states[1][16]="IN";   states[3][16]="Indiana";   states[2][16]="Stacey Alameda, MSW, LCSW<br>Sr. Program Coordinator<br>Parents Anonymous<sup>®</sup> Inc.<br>675 W. Foothill Blvd., Suite 220<br>Claremont, CA 91711<br>TEL: (909) 621-6184 ext. 222 FAX:(909) 625-6304<br>E-mail:&nbsp; <a href='mailto:salameda@parentsanonymous.org'>salameda@parentsanonymous.org</a>"; 
  states[1][17]="KS";   states[3][17]="Kansas";   states[2][17]="Stacey Alameda, MSW, LCSW<br>Sr. Program Coordinator<br>Parents Anonymous<sup>®</sup> Inc.<br>675 W. Foothill Blvd., Suite 220<br>Claremont, CA 91711<br>TEL: (909) 621-6184 ext. 222 FAX:(909) 625-6304<br>E-mail:&nbsp; <a href='mailto:salameda@parentsanonymous.org'>salameda@parentsanonymous.org</a>"; 
  states[1][18]="KY";   states[3][18]="Kentucky";   states[2][18]="Flora Sherman, MA<br>Sr. Program Associate<br>Parents Anonymous<sup>®</sup> Inc.<br>675 W. Foothill Blvd. Suite 220<br>Claremont, CA 91711<br>TEL: (909) 621-9184 ext. 218 FAX:(909) 625-6304<br>E-mail:&nbsp; <a href='mailto:fsherman@parentsanonymous.org'>fsherman@parentsanonymous.org</a>"; 
  states[1][19]="LA";   states[3][19]="Louisiana";   states[2][19]="Stacey Alameda, MSW, LCSW<br>Sr. Program Coordinator<br>Parents Anonymous<sup>®</sup> Inc.<br>675 W. Foothill Blvd., Suite 220<br>Claremont, CA 91711<br>TEL: (909) 621-6184 ext. 222 FAX:(909) 625-6304<br>E-mail:&nbsp; <a href='mailto:salameda@parentsanonymous.org'>salameda@parentsanonymous.org</a>"; 
  states[1][20]="MA";   states[3][20]="Massachusetts";   states[2][20]="Stacey Alameda, MSW, LCSW<br>Sr. Program Coordinator<br>Parents Anonymous<sup>®</sup> Inc.<br>675 W. Foothill Blvd., Suite 220<br>Claremont, CA 91711<br>TEL: (909) 621-6184 ext. 222 FAX:(909) 625-6304<br>E-mail:&nbsp; <a href='mailto:salameda@parentsanonymous.org'>salameda@parentsanonymous.org</a>"; 
  states[1][21]="MD";   states[3][21]="Maryland";   states[2][21]="Stacey Alameda, MSW, LCSW<br>Sr. Program Coordinator<br>Parents Anonymous<sup>®</sup> Inc.<br>675 W. Foothill Blvd., Suite 220<br>Claremont, CA 91711<br>TEL: (909) 621-6184 ext. 222 FAX:(909) 625-6304<br>E-mail:&nbsp; <a href='mailto:salameda@parentsanonymous.org'>salameda@parentsanonymous.org</a>"; 
  states[1][22]="ME";   states[3][22]="Maine";   states[2][22]="Stacey Alameda, MSW, LCSW<br>Sr. Program Coordinator<br>Parents Anonymous<sup>®</sup> Inc.<br>675 W. Foothill Blvd., Suite 220<br>Claremont, CA 91711<br>TEL: (909) 621-6184 ext. 222 FAX:(909) 625-6304<br>E-mail:&nbsp; <a href='mailto:salameda@parentsanonymous.org'>salameda@parentsanonymous.org</a>"; 
  states[1][23]="MI";   states[3][23]="Michigan";   states[2][23]="Stacey Alameda, MSW, LCSW<br>Sr. Program Coordinator<br>Parents Anonymous<sup>®</sup> Inc.<br>675 W. Foothill Blvd., Suite 220<br>Claremont, CA 91711<br>TEL: (909) 621-6184 ext. 222 FAX:(909) 625-6304<br>E-mail:&nbsp; <a href='mailto:salameda@parentsanonymous.org'>salameda@parentsanonymous.org</a>"; 
  states[1][24]="MN";   states[3][24]="Minnesota";   states[2][24]="Stacey Alameda, MSW, LCSW<br>Sr. Program Coordinator<br>Parents Anonymous<sup>®</sup> Inc.<br>675 W. Foothill Blvd., Suite 220<br>Claremont, CA 91711<br>TEL: (909) 621-6184 ext. 222 FAX:(909) 625-6304<br>E-mail:&nbsp; <a href='mailto:salameda@parentsanonymous.org'>salameda@parentsanonymous.org</a>"; 
  states[1][25]="MO";   states[3][25]="Missouri";   states[2][25]="Flora Sherman, MA<br>Sr. Program Associate<br>Parents Anonymous<sup>®</sup> Inc.<br>675 W. Foothill Blvd. Suite 220<br>Claremont, CA 91711<br>TEL: (909) 621-9184 ext. 218 FAX:(909) 625-6304<br>E-mail:&nbsp; <a href='mailto:fsherman@parentsanonymous.org'>fsherman@parentsanonymous.org</a>"; 
  states[1][26]="MP";   states[3][26]="Northern Marianna Islands";   states[2][26]="Stacey Alameda, MSW, LCSW<br>Sr. Program Coordinator<br>Parents Anonymous<sup>®</sup> Inc.<br>675 W. Foothill Blvd., Suite 220<br>Claremont, CA 91711<br>TEL: (909) 621-6184 ext. 222 FAX:(909) 625-6304<br>E-mail:&nbsp; <a href='mailto:salameda@parentsanonymous.org'>salameda@parentsanonymous.org</a>"; 
  states[1][27]="MS";   states[3][27]="Mississippi";   states[2][27]="Stacey Alameda, MSW, LCSW<br>Sr. Program Coordinator<br>Parents Anonymous<sup>®</sup> Inc.<br>675 W. Foothill Blvd., Suite 220<br>Claremont, CA 91711<br>TEL: (909) 621-6184 ext. 222 FAX:(909) 625-6304<br>E-mail:&nbsp; <a href='mailto:salameda@parentsanonymous.org'>salameda@parentsanonymous.org</a>"; 
  states[1][28]="MT";   states[3][28]="Montana";   states[2][28]="Stacey Alameda, MSW, LCSW<br>Sr. Program Coordinator<br>Parents Anonymous<sup>®</sup> Inc.<br>675 W. Foothill Blvd., Suite 220<br>Claremont, CA 91711<br>TEL: (909) 621-6184 ext. 222 FAX:(909) 625-6304<br>E-mail:&nbsp; <a href='mailto:salameda@parentsanonymous.org'>salameda@parentsanonymous.org</a>"; 
  states[1][29]="NC";   states[3][29]="North Carolina";   states[2][29]="Stacey Alameda, MSW, LCSW<br>Sr. Program Coordinator<br>Parents Anonymous<sup>®</sup> Inc.<br>675 W. Foothill Blvd., Suite 220<br>Claremont, CA 91711<br>TEL: (909) 621-6184 ext. 222 FAX:(909) 625-6304<br>E-mail:&nbsp; <a href='mailto:salameda@parentsanonymous.org'>salameda@parentsanonymous.org</a>"; 
  states[1][30]="ND";   states[3][30]="North Dakota";   states[2][30]="Stacey Alameda, MSW, LCSW<br>Sr. Program Coordinator<br>Parents Anonymous<sup>®</sup> Inc.<br>675 W. Foothill Blvd., Suite 220<br>Claremont, CA 91711<br>TEL: (909) 621-6184 ext. 222 FAX:(909) 625-6304<br>E-mail:&nbsp; <a href='mailto:salameda@parentsanonymous.org'>salameda@parentsanonymous.org</a>"; 
  states[1][31]="NE";   states[3][31]="Nebraska";   states[2][31]="Stacey Alameda, MSW, LCSW<br>Sr. Program Coordinator<br>Parents Anonymous<sup>®</sup> Inc.<br>675 W. Foothill Blvd., Suite 220<br>Claremont, CA 91711<br>TEL: (909) 621-6184 ext. 222 FAX:(909) 625-6304<br>E-mail:&nbsp; <a href='mailto:salameda@parentsanonymous.org'>salameda@parentsanonymous.org</a>"; 
  states[1][32]="NH";   states[3][32]="New Hampshire";   states[2][32]="Sandra Williams, PhD<br>VP of Programs<br>Parents Anonymous<sup>®</sup> Inc.<br>675 West Foothill Blvd, Suite 220<br>Claremont, CA 91711-3475<br>TEL: (909) 621-6184 ext. 216 FAX:(909) 625-6304<br>E-mail:&nbsp; <a href='mailto:swilliams@parentsanonymous.org'>swilliams@parentsanonymous.org</a>"; 
  states[1][33]="NJ";   states[3][33]="New Jersey";   states[2][33]="Sandra Williams, PhD<br>VP of Programs<br>Parents Anonymous<sup>®</sup> Inc.<br>675 West Foothill Blvd, Suite 220<br>Claremont, CA 91711-3475<br>TEL: (909) 621-6184 ext. 216 FAX:(909) 625-6304<br>E-mail:&nbsp; <a href='mailto:swilliams@parentsanonymous.org'>swilliams@parentsanonymous.org</a>"; 
  states[1][34]="NM";   states[3][34]="New Mexico";   states[2][34]="Flora Sherman, MA<br>Sr. Program Associate<br>Parents Anonymous<sup>®</sup> Inc.<br>675 W. Foothill Blvd. Suite 220<br>Claremont, CA 91711<br>TEL: (909) 621-9184 ext. 218 FAX:(909) 625-6304<br>E-mail:&nbsp; <a href='mailto:fsherman@parentsanonymous.org'>fsherman@parentsanonymous.org</a>"; 
  states[1][35]="NV";   states[3][35]="Nevada";   states[2][35]="Stacey Alameda, MSW, LCSW<br>Sr. Program Coordinator<br>Parents Anonymous<sup>®</sup> Inc.<br>675 W. Foothill Blvd., Suite 220<br>Claremont, CA 91711<br>TEL: (909) 621-6184 ext. 222 FAX:(909) 625-6304<br>E-mail:&nbsp; <a href='mailto:salameda@parentsanonymous.org'>salameda@parentsanonymous.org</a>"; 
  states[1][36]="NY";   states[3][36]="New York";   states[2][36]="Flora Sherman, MA<br>Sr. Program Associate<br>Parents Anonymous<sup>®</sup> Inc.<br>675 W. Foothill Blvd. Suite 220<br>Claremont, CA 91711<br>TEL: (909) 621-9184 ext. 218 FAX:(909) 625-6304<br>E-mail:&nbsp; <a href='mailto:fsherman@parentsanonymous.org'>fsherman@parentsanonymous.org</a>"; 
  states[1][37]="OH";   states[3][37]="Ohio";   states[2][37]="Stacey Alameda, MSW, LCSW<br>Sr. Program Coordinator<br>Parents Anonymous<sup>®</sup> Inc.<br>675 W. Foothill Blvd., Suite 220<br>Claremont, CA 91711<br>TEL: (909) 621-6184 ext. 222 FAX:(909) 625-6304<br>E-mail:&nbsp; <a href='mailto:salameda@parentsanonymous.org'>salameda@parentsanonymous.org</a>"; 
  states[1][38]="OK";   states[3][38]="Oklahoma";   states[2][38]="Stacey Alameda, MSW, LCSW<br>Sr. Program Coordinator<br>Parents Anonymous<sup>®</sup> Inc.<br>675 W. Foothill Blvd., Suite 220<br>Claremont, CA 91711<br>TEL: (909) 621-6184 ext. 222 FAX:(909) 625-6304<br>E-mail:&nbsp; <a href='mailto:salameda@parentsanonymous.org'>salameda@parentsanonymous.org</a>"; 
  states[1][39]="OR";   states[3][39]="Oregon";   states[2][39]="Stacey Alameda, MSW, LCSW<br>Sr. Program Coordinator<br>Parents Anonymous<sup>®</sup> Inc.<br>675 W. Foothill Blvd., Suite 220<br>Claremont, CA 91711<br>TEL: (909) 621-6184 ext. 222 FAX:(909) 625-6304<br>E-mail:&nbsp; <a href='mailto:salameda@parentsanonymous.org'>salameda@parentsanonymous.org</a>"; 
  states[1][40]="PA";   states[3][40]="Pennsylvania";   states[2][40]="Sandra Williams, PhD<br>VP of Programs<br>Parents Anonymous<sup>®</sup> Inc.<br>675 West Foothill Blvd, Suite 220<br>Claremont, CA 91711-3475<br>TEL: (909) 621-6184 ext. 216 FAX:(909) 625-6304<br>E-mail:&nbsp; <a href='mailto:swilliams@parentsanonymous.org'>swilliams@parentsanonymous.org</a>"; 
  states[1][41]="PR";   states[3][41]="Puerto Rico";   states[2][41]="Stacey Alameda, MSW, LCSW<br>Sr. Program Coordinator<br>Parents Anonymous<sup>®</sup> Inc.<br>675 W. Foothill Blvd., Suite 220<br>Claremont, CA 91711<br>TEL: (909) 621-6184 ext. 222 FAX:(909) 625-6304<br>E-mail:&nbsp; <a href='mailto:salameda@parentsanonymous.org'>salameda@parentsanonymous.org</a>"; 
  states[1][42]="RI";   states[3][42]="Rhode Island";   states[2][42]="Stacey Alameda, MSW, LCSW<br>Sr. Program Coordinator<br>Parents Anonymous<sup>®</sup> Inc.<br>675 W. Foothill Blvd., Suite 220<br>Claremont, CA 91711<br>TEL: (909) 621-6184 ext. 222 FAX:(909) 625-6304<br>E-mail:&nbsp; <a href='mailto:salameda@parentsanonymous.org'>salameda@parentsanonymous.org</a>"; 
  states[1][43]="SC";   states[3][43]="South Carolina";   states[2][43]="Stacey Alameda, MSW, LCSW<br>Sr. Program Coordinator<br>Parents Anonymous<sup>®</sup> Inc.<br>675 W. Foothill Blvd., Suite 220<br>Claremont, CA 91711<br>TEL: (909) 621-6184 ext. 222 FAX:(909) 625-6304<br>E-mail:&nbsp; <a href='mailto:salameda@parentsanonymous.org'>salameda@parentsanonymous.org</a>"; 
  states[1][44]="SD";   states[3][44]="South Dakota";   states[2][44]="Stacey Alameda, MSW, LCSW<br>Sr. Program Coordinator<br>Parents Anonymous<sup>®</sup> Inc.<br>675 W. Foothill Blvd., Suite 220<br>Claremont, CA 91711<br>TEL: (909) 621-6184 ext. 222 FAX:(909) 625-6304<br>E-mail:&nbsp; <a href='mailto:salameda@parentsanonymous.org'>salameda@parentsanonymous.org</a>"; 
  states[1][45]="TN";   states[3][45]="Tennessee";   states[2][45]="Stacey Alameda, MSW, LCSW<br>Sr. Program Coordinator<br>Parents Anonymous<sup>®</sup> Inc.<br>675 W. Foothill Blvd., Suite 220<br>Claremont, CA 91711<br>TEL: (909) 621-6184 ext. 222 FAX:(909) 625-6304<br>E-mail:&nbsp; <a href='mailto:salameda@parentsanonymous.org'>salameda@parentsanonymous.org</a>"; 
  states[1][46]="TX";   states[3][46]="Texas";   states[2][46]="Stacey Alameda, MSW, LCSW<br>Sr. Program Coordinator<br>Parents Anonymous<sup>®</sup> Inc.<br>675 W. Foothill Blvd., Suite 220<br>Claremont, CA 91711<br>TEL: (909) 621-6184 ext. 222 FAX:(909) 625-6304<br>E-mail:&nbsp; <a href='mailto:salameda@parentsanonymous.org'>salameda@parentsanonymous.org</a>"; 
  states[1][47]="UT";   states[3][47]="Utah";   states[2][47]="Flora Sherman, MA<br>Sr. Program Associate<br>Parents Anonymous<sup>®</sup> Inc.<br>675 W. Foothill Blvd. Suite 220<br>Claremont, CA 91711<br>TEL: (909) 621-9184 ext. 218 FAX:(909) 625-6304<br>E-mail:&nbsp; <a href='mailto:fsherman@parentsanonymous.org'>fsherman@parentsanonymous.org</a>"; 
  states[1][48]="VA";   states[3][48]="Virginia";   states[2][48]="Stacey Alameda, MSW, LCSW<br>Sr. Program Coordinator<br>Parents Anonymous<sup>®</sup> Inc.<br>675 W. Foothill Blvd., Suite 220<br>Claremont, CA 91711<br>TEL: (909) 621-6184 ext. 222 FAX:(909) 625-6304<br>E-mail:&nbsp; <a href='mailto:salameda@parentsanonymous.org'>salameda@parentsanonymous.org</a>"; 
  states[1][49]="VT";   states[3][49]="Vermont";   states[2][49]="Stacey Alameda, MSW, LCSW<br>Sr. Program Coordinator<br>Parents Anonymous<sup>®</sup> Inc.<br>675 W. Foothill Blvd., Suite 220<br>Claremont, CA 91711<br>TEL: (909) 621-6184 ext. 222 FAX:(909) 625-6304<br>E-mail:&nbsp; <a href='mailto:salameda@parentsanonymous.org'>salameda@parentsanonymous.org</a>"; 
  states[1][50]="WA";   states[3][50]="Washington";   states[2][50]="Stacey Alameda, MSW, LCSW<br>Sr. Program Coordinator<br>Parents Anonymous<sup>®</sup> Inc.<br>675 W. Foothill Blvd., Suite 220<br>Claremont, CA 91711<br>TEL: (909) 621-6184 ext. 222 FAX:(909) 625-6304<br>E-mail:&nbsp; <a href='mailto:salameda@parentsanonymous.org'>salameda@parentsanonymous.org</a>"; 
  states[1][51]="WI";   states[3][51]="Wisconsin";   states[2][51]="Stacey Alameda, MSW, LCSW<br>Sr. Program Coordinator<br>Parents Anonymous<sup>®</sup> Inc.<br>675 W. Foothill Blvd., Suite 220<br>Claremont, CA 91711<br>TEL: (909) 621-6184 ext. 222 FAX:(909) 625-6304<br>E-mail:&nbsp; <a href='mailto:salameda@parentsanonymous.org'>salameda@parentsanonymous.org</a>"; 
  states[1][52]="WV";   states[3][52]="West Virginia";   states[2][52]="Stacey Alameda, MSW, LCSW<br>Sr. Program Coordinator<br>Parents Anonymous<sup>®</sup> Inc.<br>675 W. Foothill Blvd., Suite 220<br>Claremont, CA 91711<br>TEL: (909) 621-6184 ext. 222 FAX:(909) 625-6304<br>E-mail:&nbsp; <a href='mailto:salameda@parentsanonymous.org'>salameda@parentsanonymous.org</a>"; 
  states[1][53]="WY";   states[3][53]="Wyoming";   states[2][53]="Stacey Alameda, MSW, LCSW<br>Sr. Program Coordinator<br>Parents Anonymous<sup>®</sup> Inc.<br>675 W. Foothill Blvd., Suite 220<br>Claremont, CA 91711<br>TEL: (909) 621-6184 ext. 222 FAX:(909) 625-6304<br>E-mail:&nbsp; <a href='mailto:salameda@parentsanonymous.org'>salameda@parentsanonymous.org</a>"; 

}

function writeSelectStateOptions()
{
	document.write ("<Option value='Select'>Select a State");
	
	//insert options into the selectState
	document.write ("<Option value=AL>Alabama");
	document.write ("<Option value=AK>Alaska");
	document.write ("<Option value=AZ>Arizona");
	document.write ("<Option value=AR>Arkansas");
	document.write ("<Option value=CA>California");
	document.write ("<Option value=CO>Colorado");
	document.write ("<Option value=CT>Connecticut");
	document.write ("<Option value=DE>Delaware");
	document.write ("<Option value=DC>District of Columbia");
	document.write ("<Option value=FL>Florida");
	document.write ("<Option value=GA>Georgia");
	document.write ("<Option value=HI>Hawaii");
	document.write ("<Option value=ID>Idaho");
	document.write ("<Option value=IL>Illinois");
	document.write ("<Option value=IN>Indiana");
	document.write ("<Option value=IA>Iowa");
	document.write ("<Option value=KS>Kansas");
	document.write ("<Option value=KY>Kentucky");
	document.write ("<Option value=LA>Louisiana");
	document.write ("<Option value=ME>Maine");
	document.write ("<Option value=MD>Maryland");
	document.write ("<Option value=MA>Massachusetts");
	document.write ("<Option value=MI>Michigan");
	document.write ("<Option value=MN>Minnesota");
	document.write ("<Option value=MS>Mississippi");
	document.write ("<Option value=MO>Missouri");
	document.write ("<Option value=MT>Montana");
	document.write ("<Option value=NE>Nebraska");
	document.write ("<Option value=NV>Nevada");
	document.write ("<Option value=NH>New Hampshire");
	document.write ("<Option value=NJ>New Jersey");
	document.write ("<Option value=NM>New Mexico");
	document.write ("<Option value=NY>New York");
	document.write ("<Option value=NC>North Carolina");
	document.write ("<Option value=ND>North Dakota");
	document.write ("<Option value=MP>Northern Marianna Islands");
	document.write ("<Option value=OH>Ohio");
	document.write ("<Option value=OK>Oklahoma");
	document.write ("<Option value=OR>Oregon");
	document.write ("<Option value=PA>Pennsylvania");
	document.write ("<Option value=PR>Puerto Rico");
	document.write ("<Option value=RI>Rhode Island");
	document.write ("<Option value=SC>South Carolina");
	document.write ("<Option value=SD>South Dakota");
	document.write ("<Option value=TN>Tennessee");
	document.write ("<Option value=TX>Texas");
	document.write ("<Option value=UT>Utah");
	document.write ("<Option value=VT>Vermont");
	document.write ("<Option value=VA>Virginia");
	document.write ("<Option value=WA>Washington");
	document.write ("<Option value=WV>West Virginia");
	document.write ("<Option value=WI>Wisconsin");
	document.write ("<Option value=WY>Wyoming");

}

//last updated on 9/11/02