
window.onload = function() 
{

var _email = 'hello';
_email += '@';
_email += 'behindthedot.com';


document.getElementById('email').innerHTML = '<a href="mailto:'+_email+'">'+_email+'</a>';

}
