// Displays an email tag based on the given parameters
function getHidden(end, middle, start, subject, titleBeforeEmail, titleAfterEmail)
{
	// Assemble various parts of the email
	var one = 'mai';
	var two = 'lto:';
	var three = '?Subject=';
	var emailAddress = getPutTogetherEmail(end, middle, start);
	var title = titleBeforeEmail + emailAddress + titleAfterEmail;
	var titleAttribute = "title='" + title + "'";
	var altAttribute = "alt='" + title + "'";
	var emailTag = "<a href='" + one + two + emailAddress + three + subject + "' " + titleAttribute + " " + altAttribute + ">" + emailAddress + "</a>";
	
	// Write out the email tag to the screen
	document.write(emailTag);
}

// Returns a string that is a legible representation of the 3 provided strings of a broken up email
function getPutTogetherEmail(end, middle, start)
{
	// start, middle, end
	var putTogether = start + middle + end;
	
	// Return email in its legible form
	return (putTogether);
}


