function MyDate () {
	//return date in format DDMMYYYY
	today = new Date();
	theDate = AddZero(today.getDate().toString());
	theDate = theDate + AddZero((today.getMonth()+1).toString());
	theDate = theDate + today.getYear().toString();
	return theDate;
}
function AddZero (strDayMonth) {
	//add zero to strings of numbers less than 10
	if (strDayMonth.length != 2) {
		strDayMonth = "0" + strDayMonth; 
	}
	return strDayMonth;
}
//document.write ("<iframe src='prayers.asp' width='300' height='200'></iframe>")
document.write ("<iframe src='http://www.releaseinternational.org/javascript/prayers.htm#" + MyDate() +  "' width='305' height='200'></iframe>")
