// JavaScript Document
function sendMssg(recip,loc,name) {
	var domain = new Array ('viewpointlearning.com','jennewein.org','','')
	// if you want to display the e-mail address as mailto link, set the name parameter to "self"
  if (name == "self") {
  document.write('<a href="mailto:'+recip+'@'+domain[loc]+'">'+recip+'@'+domain[loc]+'</a>')
  }
	// if you want to diplay some other text for the mailto link, set the name parameter to whatever you want it to say.
  else {
    document.write('<a href="mailto:'+recip+'@'+domain[loc]+'">'+name+'</a>')
  }
}

