//    Defines and hides email address
//    Charles C Burgess
//    15 FEB 2006

var e_Nam = "burgess.email";
var e_Dom = "gmail";
var e_Ext = "com";

var emailFull = e_Nam + "@" + e_Dom + "." +  e_Ext;

function ccbEml() {

var NowEmail = new Date();

textEmail = "<a href = '" + "mai" + "lto:" + emailFull
	+ "?subject=Response%20from%20" + pag_name + "%20page%20" + NowEmail
	+ "&body=Thanks%20for%20visiting%20my%20" + pag_name + "%20page!%20%20"
	+ "Please%20include%20your%20name%20and%20appropriate%20"
	+ "contact%20information%20within%20the%20message%20body%20"
	+ "after%20deleting%20this%20text.' "
	+ "onMouseover=\"window.status='Email'; return true\""
	+ "onMouseout=\"window.status=''; return true\""
	+ "title='email link'>"
	+ "Email"  // ***visible link ***
	+ "<\/a>";

document.write(textEmail);

}

function ccbEml2(){

var NowEmail2 = new Date();

location.href="mai" + "lto:" + emailFull
	+ "?subject=Response%20from%20" + pag_name + "%20page%20" + NowEmail2
	+ "&body=Thanks%20for%20visiting%20my%20" + pag_name + "%20page!%20%20"
	+ "Please%20include%20your%20name%20and%20appropriate%20"
	+ "contact%20information%20within%20the%20message%20body%20"
	+ "after%20deleting%20this%20text.";
}
