<!--

var varCount = 20
var varNum = 0

arrName = new Array(varCount);
arrQuote = new Array(varCount);

// we put the scripture in an array
arrName[varNum] = "Martha"
arrQuote[varNum] = "I was invited to a breakfast meeting by Virginia, and it was the personal and professional shot in the arm I needed.  There are plenty of women's networking organizations, but PWF gives us the common ground of shared faith from which to build our relationships.  The meetings are fun, informative and affordable so I would definitely feel comfortable inviting other women to our meetings."

varNum = varNum + 1
arrName[varNum] = "Diana"
arrQuote[varNum] = "I  belong to PWF because I have found it a great place to network with other dedicated Christian business women.  I've found a warm spirit of camraderie at the meetings."

// Betsy Martin
varNum = varNum + 1
arrName[varNum] = " Betsy"
arrQuote[varNum] = "I joined PWF several years ago and have always valued the support and encouragement from the friends I have made. As a result I have learned how to live out my faith more effectively in the workplace."

varNum = varNum + 1
arrName[varNum] = "Sandra"
arrQuote[varNum] = "I am a member of PWF because it is great to be able to do business networking among Christian women.  The meetings are a wonderful diversion from the workday where we can lift our hearts, praise God and fellowship with each other.  In our work lives, we often focus on business and the bottom line, but I would recommend PWF as a place where Christian women can focus on what is really important while we also extend our business network.  Other business groups have their place, but PWF has its own special place."

varNum = varNum + 1
arrName[varNum] = "Kathrine"
arrQuote[varNum] = "I attended the February meeting and was amazed at the caliber of Godly women in one room!  I look forward to being a member in such a special organization."

varNum = varNum + 1
arrName[varNum] = "Karen"
arrQuote[varNum] = "I joined PWF for the opportunity to network with other Christian business women.  I continue to attend the meetings because I find them so uplifting and encouraging.  It's like attending a little oasis in the midst of a hectic work life."

// Dana Avant
varNum = varNum + 1
arrName[varNum] = "Dana"
arrQuote[varNum] = "I am a PWF Member because of support and encouragement I receive from other Christian business women.  The meetings are a time to be refreshed and rejuvinated.  I would highly recommend the group to any Christian women who want to be uplifted!"

//Kirsten Strawn
varNum = varNum + 1
arrName[varNum] = "Kirsten"
arrQuote[varNum] = "Each month as I gather with professional Christian women at PWF I am inspired and empowered. Together we learn from a dynamic speaker, worship our Savior, and encourage one another over a delicious meal. I'm grateful to be part of what God is doing in us and through us out in the market place after coming together to get refueled."

//Arlene Pellicane
varNum = varNum + 1
arrName[varNum] = "Arlene"
arrQuote[varNum] = "There are so many wonderful women to meet at PWF.  When you come to a PWF event, you will be revived in your spirit and encouraged by new friendships.  Life is truly sweeter when walked out with kindred spirits!"

//Diana Wallis Taylor
varNum = varNum + 1
arrName[varNum] = "Diana"
arrQuote[varNum] = "I am a member because I enjoy the company of professional Christian Women and this is a very supportive group.  I like the networking and look for people who can supply business needs.  I think PWF is a good place to invite a friend who is starting a business, so she can get  to know other women and show what she is doing."

//Marilyn Lewis
varNum = varNum + 1
arrName[varNum] = "Marilyn"
arrQuote[varNum] = "I have a great appreciation for PWF.  The first time I attended I could see that this is a group of women who want Christ to be the center of what they do-professionally and personally.  I enjoy the fellowship with other women around the tables over breakfast or lunch.  I often have the opportunity to share what I do as a Marriage and Family Therapist, and find out what resources they have to offer that will enrich my own life.  I am inspired by the speakers and impressed with the quality of every part of the program.  I love to invite other women, knowing they will be blessed by coming."

//Marcia Ramsland
varNum = varNum + 1
arrName[varNum] = "Marcia"
arrQuote[varNum] = "At PWF, I find like minded Christian business women who are making a difference in their world.  The speakers have relavant topics, the networking benefits my life and builds our presence  the community. Plus the food is good, too. I was asked to speak and ended up joining as member! I'd highly recommend it!"

//Christy Mitchell
varNum = varNum + 1
arrName[varNum] = "Christy"
arrQuote[varNum] = "I am a member because of the great fellowship that I am able to experience with other business women.  We all have this in common, that we believe in God the Father, Jesus as our Lord & Savior & the Holy Spirit as our counselor here on this earth.  I enjoy hearing about others businesses and what they are doing.  I love being able to support women & their businesses.   I like learning about the ministries that are going on in the San Diego area. Yes, I have recommended PWF to friends and will continue to do so."

//Kathy Hansen
varNum = varNum + 1
arrName[varNum] = "Kathy"
arrQuote[varNum] = "PWF provides an encouraging haven for me to come to every month.  The meetings provide not only an opportunity for friendship building, but also a chance to be personally challenged and uplifted.  The women are authentic and fun.  I highly recommend PWF to friends and colleagues."

//Theola Campbell
varNum = varNum + 1
arrName[varNum] = "Theola"
arrQuote[varNum] = "I became a member of PWF to have another avenue to network with people for Bethel Seminary San Diego.  I stayed a member not only for the professional piece but for the friendship and sisterhood that has developed with so many over the years - each relationship rich in its own way!  Thank you PWF for enhancing my life."

//Colleen Monroe
varNum = varNum + 1
arrName[varNum] = "Colleen"
arrQuote[varNum] = "I became a PWF member a few years ago to connect with women in the business world of San Diego County. The meetings have always been informative with easy life and business applications. It is always nice to make new friends at PWF as these are women who share similar concerns and interests."

//Linda Stirling, 2011
varNum = varNum + 1
arrName[varNum] = "Linda"
arrQuote[varNum] = "PWF is such a great way to start my day at a breakfast with wonderful Christian professional women gathering together to learn more about God's desires for their life and work."

//Kathy Mays, 2011
varNum = varNum + 1
arrName[varNum] = "Kathy"
arrQuote[varNum] = "In a time where everyone is busy, it's nice to slow down & break bread together with sister believers and relish the moment!"

// reset count to make sure it is accurate
varCount = varNum

function GetRandomNum() {
	var varNum = Math.round(varCount*Math.random())
	return varNum	
}

function DisplayTestimonial() {
	varNum = GetRandomNum()
	// display first testimonial
	document.write ("<p>")
	document.write ("<i>&#034;" +arrQuote[varNum] + "&#034;</i><br>")
	document.write ("<strong>" +arrName[varNum] + "</strong><br>")
	document.write ("</p>")
	
	varNum = varNum + 1
	if (varNum > varCount) {
		varNum = 0
	}
	
	// display second testimonial
	document.write ("<p>")
	document.write ("<i>&#034;" +arrQuote[varNum] + "&#034;</i><br>")
	document.write ("<strong>" +arrName[varNum] + "</strong><br>")
	document.write ("</p>")
}

function CreatePauseContentArray(objPauseContent) {	
	
	// always randomize the quotes
	varNum = GetRandomNum()
	
	for (var i=0; i < arrQuote.length; i++) {
		objPauseContent[i]="<i>&#034;" +arrQuote[varNum] + "&#034;</i>&nbsp;&nbsp;&nbsp;<strong>" +arrName[varNum] + "</strong><br><br>"
		varNum = varNum + 1
		if (varNum > varCount) {
			varNum = 0
		}
	}

}

-->
