function Contact(pIndex) {

  document.write('<a href="About.htm" onmouseover="this.href=ContactLink(' + pIndex + ')">');

  var x = '';
       if (pIndex ==  1) {x = 'EMpfranca.gif'}
  else if (pIndex ==  2) {x = 'EMahayn.gif'}
  else if (pIndex ==  3) {x = 'EMdhall.gif'}
  else if (pIndex ==  4) {x = 'EMaroberts.gif'}
	else if (pIndex ==  5) {x = 'EMchrisAn.PNG'};
  document.write('<img border=0 align="top" src="images/' + x + '" align="top">');

  document.write('</a>');

};

function ContactLink(pIndex) {

  var x = '';
       if (pIndex ==  1) {x = 'mai#cchristchurchchicago#acomcast#dnet'}
  else if (pIndex ==  2) {x = 'mai#cchristchurchchicago#acomcast#dnet'}
	else if (pIndex ==  3) {x = 'mai#cdhall#achristchurchchicago#dnet'}
	else if (pIndex ==  4) {x = 'mai#caroberts#achristchurchchicago#dnet'}
	else if (pIndex ==  5) {x = 'mai#cpfranca#achristchurchchicago#dnet'};

  x = x.replace('#c', 'lto:');
  x = x.replace('#a', '@');
  x = x.replace('#d', '.');

  return(x);

}

