// JavaScript Document

function concatene(name, domain)
 { 
  document.write('<a href=\"mailto:' + name + '@' + domain + '?subject=Message from the corporate website of Trescal\" class=\"email\">') ;
  document.write(name + '@' + domain + '</a>') ;
  //  document.write('<font color=\"#008000\">' +name + '@' + domain + '</font></a>');
 }

function concatenetext(name, domain, text)
 { 
  document.write('<a href=\"mailto:' + name + '@' + domain + '?subject=Message from the corporate website of Trescal\" class=\"email\">') ;
  document.write(text + '</a>') ;
 }

 
function popup(theURL,winName,features) { 
  window.open(theURL,winName,features);
}

