function EEWCMenu(pPath) {
  document.write('<p class="Menu"><a class="Menu" href="'+pPath+'index.htm">Welcome</a></p>');
  document.write('<p class="Menu"><a class="Menu" href="'+pPath+'About.htm">About EEWC</a></p>');
  document.write('<p class="Menu"><a class="Menu" href="'+pPath+'NewsEvents.htm">News & Events</a></p>');
  document.write('<p class="Menu"><a class="Menu" href="'+pPath+'72-27/">72-27 Weblog</a></p>');
  document.write('<p class="Menu"><a class="Menu" href="'+pPath+'CFT.htm">Christian Feminism Today Magazine</a></p>');
  document.write('<p class="MenuSub">~ <a class="Menu" href="'+pPath+'CFT.htm">Feature Articles</a></p>');
  document.write('<p class="MenuSub">~ <a class="Menu" href="'+pPath+'Reviews.htm">Book Reviews</a></p>');
  document.write('<p class="Menu"><a class="Menu" href="'+pPath+'Commentaries.htm">Commentaries</a></p>');
  document.write('<p class="Menu"><a class="Menu" href="'+pPath+'Explorations.htm">Web Explorations<br>for Christian<br>Feminists</a>');
  document.write('<p class="Menu"><a class="Menu" href="'+pPath+'Audio.htm">EEWC Audio</a>');
  document.write('<p class="Menu"><a class="Menu" href="'+pPath+'Membership.htm">Membership &<br>Subscriptions</a></p>');
  document.write('<p class="Menu"><a class="Menu" href="'+pPath+'Contact.htm">Contact Us</a></p>');
}

function Contact(pIndex) {

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

  var x = '';
       if (pIndex ==  1) {x = 'EMoffice.gif'};
  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#coffice#aeewc#dcom'};

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

  return(x);

}

