<!--

var varCount  = 6
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."

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."

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!"




// 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>")
}

-->