
	function DCCMenu(pItem) {
		var xMenu = 'SubMenu' + pItem;
		document.getElementById('SubMenu').innerHTML = document.getElementById(xMenu).innerHTML;
	}
	
	function Contact(pIndex) {

		document.write('<a href="Contact.htm" onmouseover="this.href=ContactLink(' + pIndex + ')">');
	
		var x = '';
				 if (pIndex ==  1) {x = 'stephen'}
		else if (pIndex ==  2) {x = 'judith'}
		else if (pIndex ==  3) {x = 'subscribe'}
		else if (pIndex ==  4) {x = 'unsubscribe'}
		else if (pIndex ==  5) {x = 'stephen2'}
		else if (pIndex ==  6) {x = 'judith2'}
		else if (pIndex ==  7) {x = 'susanne'}
		else if (pIndex ==  8) {x = 'susanne2'};
		document.write('<img border=0 align="top" src="images/EM/' + x + '.gif" align="top" ');
		document.write('onMouseOver="this.src=\'images/EM/' + x + 'H.gif\'" ');
		document.write('onmouseout="this.src=\'images/EM/' + x + '.gif\'">');
	
		document.write('</a>');
	
	};
	
	function ContactLink(pIndex) {
	
		var x = '';
				 if (pIndex ==  1) {x = 'mai#cdirector#adepaulcommunitychorus#dorg'}
		else if (pIndex ==  2) {x = 'mai#cjkarzen#adepaul#dedu'}
		else if (pIndex ==  3) {x = 'mai#csubscribe#adepaulcommunitychorus#dorg?subject=SUBSCRIBE'}
		else if (pIndex ==  4) {x = 'mai#csubscribe#adepaulcommunitychorus#dorg?subject=UNSUBSCRIBE'}
		else if (pIndex ==  5) {x = 'mai#cdirector#adepaulcommunitychorus#dorg'}
		else if (pIndex ==  6) {x = 'mai#cjkarzen#adepaul#dedu'}
		else if (pIndex ==  7) {x = 'mai#csbaker#adepaul#dedu'}
		else if (pIndex ==  8) {x = 'mai#csbaker#adepaul#dedu'};
	
		x = x.replace('#c', 'lto:');
		x = x.replace('#a', '@');
		x = x.replace('#d', '.');
	
		return(x);
	
	}
	
	// Fix PNG Transparency in Win IE 5.5 & 6 -- http://homepage.ntlworld.com/bobosola. Updated 18-Jan-2006. //
	// <img src="xyz.png" alt="foo" width="10" height="20" onload="fixPNG(this)">                            //
	
	var arVersion = navigator.appVersion.split("MSIE")
	var version = parseFloat(arVersion[1])
	
	function fixPNG(myImage) 
	{
		if ((version >= 5.5) && (version < 7) && (document.body.filters)) 
		{
		   var imgID = (myImage.id) ? "id='" + myImage.id + "' " : ""
		   var imgClass = (myImage.className) ? "class='" + myImage.className + "' " : ""
		   var imgTitle = (myImage.title) ? 
						 "title='" + myImage.title  + "' " : "title='" + myImage.alt + "' "
		   var imgStyle = "display:inline-block;" + myImage.style.cssText
		   var strNewHTML = "<span " + imgID + imgClass + imgTitle
					  + " style=\"" + "width:" + myImage.width 
					  + "px; height:" + myImage.height 
					  + "px;" + imgStyle + ";"
					  + "filter:progid:DXImageTransform.Microsoft.AlphaImageLoader"
					  + "(src=\'" + myImage.src + "\', sizingMethod='scale');\"></span>"
		   myImage.outerHTML = strNewHTML	  
		}
	}