<iframe id="iframe00" height="16" frameborder="0"></iframe>
<script type="text/javascript">
// Get two dates
var dayDate = new Date()
var monthDate = new Date()
// Change each date in accordance to its future use
var day = dayDate.getDate()
var month = monthDate.getMonth()+1
// Change the type of variables to String
var strDay = String(day)
var strMon = String(month)
// If month/day is 1-9, add a 0 in front
if (strMon.length < 2){
strMon = "0"+strMon
}
if (strDay.length < 2){
strDay = "0"+strDay
}
// Redirect the user to today's mp3 file
document.getElementById('iframe00').src="http://www.peterinna.com/biblecast/128/"+strMon+strDay+".mp3"
</script>