function Contact(pIndex) {

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

  var x = '';
       if (pIndex ==  1) {x = 'EMworshipalive'};

	document.write('<img border=0 align="top" src="images/' + x + '.gif" align="top" ');
	document.write('onMouseOver="this.src=\'images/' + x + 'H.gif\'" ');
	document.write('onmouseout="this.src=\'images/' + x + '.gif\'">');


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

};

function ContactLink(pIndex) {

  var x = '';
       if (pIndex ==  1) {x = 'mai#cworshipalive#acomcast#dnet'};

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

  return(x);

}

