aryEmails = new Array()
aryEmails[0]= "dmarvin@rmpa.org"
aryEmails[1]= "cbrodersen@rmpa.org"
aryEmails[2]= "devans@rmpa.org"
aryEmails[3]= "dkillinger@rmpa.org"
aryEmails[4]= "dslabaugh@rmpa.org "
aryEmails[5]= "ccollver@rmpa.org"
aryEmails[6]= "kthiede@rmpa.org"
aryEmails[7]= "bworthington@rmpa.org"
aryEmails[8]= "tworthington@rmpa.org"
aryEmails[9]= "ggainey@rmpa.org"
aryEmails[10]= "lnocera@rmpa.org"
aryEmails[11]= "cnocera@rmpa.org"
aryEmails[12]= "wdurrett@rmpa.org"
aryEmails[13]= "webmaster@rmpa.org"
aryEmails[14]= "info@rmpa.org"
aryEmails[15]= "klaubhan@rmpa.org"
aryEmails[16]= "alundblad@rmpa.org"
aryEmails[17]= "dburke@rmpa.org"
aryEmails[18]= "lryals@rmpa.org"
aryEmails[19]="kmartinez@rmpa.org "
aryEmails[20] = "bphalen@rmpa.org"
aryEmails[21] = "ccraig@rmpa.org"
aryEmails[22]="aMontemayor@rmpa.org"

//for sale emails
aryEmails[60]="jqdrums@aol.com"
aryEmails[61]="Demmons@lps.k12.co.us"
//sound of summer
aryEmails[62]="jt@flesherhinton.com"
//for sale
aryEmails[63]="traps1@comcast.net"


function writeEmail(emailIdx,strSubject){
	document.write("<a href='mailto:" + aryEmails[emailIdx])
	if (strSubject && strSubject != ""){
		document.write("?subject=" + strSubject)
	}
	document.write("'>" + aryEmails[emailIdx] + "</a>")
}
