/* This is for menu of audio files of net
*/
function MakeArray(n) {
	this.length = n
	return this
}

monthNames = new MakeArray(12)
monthNames[1] = "January"
monthNames[2] = "February"
monthNames[3] = "March"
monthNames[4] = "April"
monthNames[5] = "May"
monthNames[6] = "June"
monthNames[7] = "July"
monthNames[8] = "August"
monthNames[9] = "September"
monthNames[10] = "October"
monthNames[11] = "November"
monthNames[12] = "December"

/* YYYYMMDDNNN
   Year, Month, Day, Net Number
   Month is converted to Alpha by monthNames
   Watch out when you build url that you strip net number
*/


bigAudio = new Array ("2010 831860", "2010 824859", "2010 817858", "2010 810857")



document.write("<font color='black' size='2'>Files are about 7Meg MP3 and play for 1 hour<br>")
document.write("<font color='black' size='2'>    They include album artwork and ID tags for MP3/iPhone/iPod<br>")
document.close

/*
for (i=0; i<bigAudio.length; i++) {
*/

for (i=0; i<4; i++) {
/*    
      urlm is for listen mp3
   
*/
     urlm = "<a HREF='http://www.amsatnet.com/netaudio/" + bigAudio[i].substr(8,3) + ".mp3'> "




      document.write("<font color='black' size='3'>" + urlm + "Download MP3" + "<\/a> &nbsp " + "Net # " + bigAudio[i].substr(8,3) + " on " + bigAudio[i].substr(0,4) + " " + monthNames[parseInt(bigAudio[i].substr(4,2))] + " " + bigAudio[i].substr(6,2) + "<br>")


/*
   document.write("<font color='black' size='3'>" + urlm + "Download MP3" + "<\/a> &nbsp " + "Net # " + bigAudio[i].substr(8,3) + " on " + bigAudio[i].substr(0,4) + "/" +bigAudio[i].substr(4,2) + "/" + bigAudio[i].substr(6,2) + "<br>")
*/  
 document.close

}
