/**
 * @author Byron Minick
 * @copyright 2007, ChristianFreebies.com
 * @version 1.0
 */

 function sendEmail(theAcct, theServer, theSubject)
 {
	var mailString = "<a href= \"mailto:" + theAcct + "@" + theServer + "?subject=" + theSubject + "  \">e-mail</a>";
	document.write(mailString);
 }
 