// ECHAD MINISTRIES 
// Creation date: 27/11/04 

var sHRef='<a href=';
var sMailTo='mailto:';
var sAt='@';
var sEnd='">';
var sEndHRef='</a>';

function sEmailAddress(sPerson, sDom, sDomType, sDescriptor, sFormatter) 
{
var sAddress;  

	if (sFormatter == '') 
		{  	
		sAddress = sHRef + '"' + sMailTo + sPerson + sAt + sDom + '.' + sDomType + '"' + sEnd 	
		}
	else
		{  
		sAddress = sHRef + '"' + sMailTo + sPerson + sAt + sDom + '.' + sDomType + '"' + sFormatter +  sEnd 
		}
	;
	if (sDescriptor == "@")	 
		{
		sAddress = sAddress + ( sPerson + sAt + sDom + '.' + sDomType )	
		}
	else
		{
		sAddress = sAddress + sDescriptor
		}
	;	
	sAddress = sAddress + sEndHRef
	document.write (sAddress);
}


 


