
var question = [
	["20080414","20080420","042008","Fifth Sunday of Easter","John 14:1-12","What works of Jesus do you do?"],
	["20080421","20080427","042708","Sixth Sunday of Easter","Jahn 14:15-21","What evidence do you see of the Holy Spirit, the Advocate, in your community of faith?"]
	];

function getCurDate() {
	CurDate=new Date();
	var day = CurDate.getDate();
	  if (day < 10)
	  {
	  day = "0" + day;
	  }
	var month = CurDate.getMonth();
	month = month + 1;
	  if (month < 10)
	  {
	  month = "0" + month;
	  }
	var year = CurDate.getYear();
        if (year > 99 && year < 2000) { year = year + 1900; }
	var curDT = "" + year + month + day;
	return curDT;
}


function showQuestions() {
	var curDT = getCurDate();
	var questionct = 0;
	for (var i=0; i<question.length; i++) {
	if (question[i][0] <= curDT && curDT <= question[i][1]) {
		questionct += 1;
		document.write('<blockquote><b>' + question[i][3] + '</b><br><a href=http://www.usccb.org/nab/readings/' + question[i][2] + '.shtml#gospel>' + question[i][4] + '</a></blockquote>');
		document.write('<h2>QUESTION OF THE WEEK</h2><blockquote>');
		document.write('<p>' + question[i][5] + '</blockquote>');
	}
	}
	if (questionct <= 0) {
		document.write('<blockquote>Please contact our parish office at 310.377.5571 for the readings and questions of the week.</blockquote>');
	}
}

