// JavaScript Document
 //output
function eml(user){
  var domain = "ctxstone.com";
  var subject = "Email concerning Central Texas Stone and Aggregate, LLC Website";
  document.write('<a title="Central Texas Stone and Aggregate, LLC." href="http://www.' + domain + '" target="_blank">' + domain + '</a><br />');
  document.write('<a href=\"mailto:' + user + '@' + domain + '?subject=' + subject + '&body=' + '\">'); 
  document.write('<br>Contact&nbsp;Central&nbsp;Texas&nbsp;Stone&nbsp;and&nbsp;Aggregate,&nbsp;LLC.</a>');
}
