// Set up the image files to be used.
var theArticles = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

theArticles[0] = './newpop/Articles/faithinaction01.xml'
theArticles[1] = './newpop/Articles/faithinaction02.xml'
theArticles[2] = './newpop/Articles/faithinaction03.xml'
theArticles[3] = './newpop/Articles/faithinaction04.xml'
theArticles[4] = './newpop/Articles/faithinaction05.xml'

// do not edit anything below this line

var jA = 0
var pA = theArticles.length;
var whichArticle = Math.round(Math.random()*(3));
function showFaithArticle(iA){
if (iA>0)
  document.write('<iframe src="'+theArticles[iA-1]+'" width="160" height="680" scrolling="auto" frameborder="0" align="left" ALLOWTRANSPARENCY="true"></iframe>');
else
	jA=whichArticle;
  document.write('<iframe src="'+theArticles[jA]+'" width="160" height="680" scrolling="auto" frameborder="0" align="left" ALLOWTRANSPARENCY="true"></iframe>')
}
