/** @Name	Mailto Concealer
 ** @URI	http://www.pxoink.net/
 ** @Author	PxO Ink
 ** @AuthorURI	http://www.pxoink.net/
 ** @License	Creative Commons Attribution-NoDerivs 3.0 Unported License
 ** @Copyright	© 2011 PxO Ink. Some Rights Reserved.
 **/

function cmailto(id, handle, domain, subject) {
	//Declare variables.
	var	a	=	'<a href="mailto:';
	var	b	=	'">';
	var	c	=	'</a>';
	
	//String building.
	var	string	=	a + handle + '@' + domain + '?subject=' + subject + b + handle + '@' + domain + c;

	//Write to the document.
	setTimeout(function() {
		document.getElementById(id).innerHTML = string;
	}, 2000);
}

cmailto('mailto', 'kfriesen', 'kevinswoodworking.ca', 'Inquiry');
