// JavaScript Document
var writeMailto = {
	anchStart: '<a href="mailto:',
	anchEnd : '">',
	where :  "@crcl.net",
	anchClose : "</a>",
	mailto : function(name) {
		document.write( this.anchStart + name + this.where + this.anchEnd + name + this.where + this.anchClose );
	}
} 
