var phraseNbr = parseInt(fetchNamedCookie("phraseNbr"));
var phrase = new Array();

phrase[0] = "Danceland...a pleasant haven in an indifferent world";
phrase[1] = "If you love dancing...and good company...this is the place to be!";
phrase[2] = "Go dancing ...for the health of it!";
phrase[3] = "Danceland/Boomers...a step above the others!";
phrase[4] = "Get more out of life...go dancing!";
phrase[5] = "Dancing makes the difference!";
phrase[6] = "We're in business for the fun of it!";

if (phraseNbr = "NaN") phraseNbr = Math.floor(Math.random()*phrase.length);

function getPhrase() {
	phraseNbr++;
	if (phraseNbr == phrase.length) phraseNbr = 0;
	setNamedCookie("phraseNbr",phraseNbr);
	return("<p class='phrase' align='center'>&quot;"+phrase[phraseNbr]+"&quot;</p>");
}

