//this function  writes out the email address without any traces to spammers. 
//It is remotely called  from all my html pages.
//Change the address1, address2, domain1, domain2 and ext here and this is reflected
//on each and every page where there is a call to this function.

if (document.images){
function printMFooter(){
var dia='19';
var mes='3';
var ano='2005';
var first = 'ma'; 
var second = 'il'; 
var third = 'to:'; 

// example: user
var address1 = 'we';
var address2 = 'bma'; 
var address3 ='ster5'
// example: google 
var domain1 = 'dic'; 
var domain2 = 'as'
// example: com 
var ext = 'com'; 
document.write('<CENTER>')
document.write('Para  contacto escreva para:/To contact us write to: <BR>');
document.write('<a href="'); 
document.write(first+second+third); 
document.write(address1+address2+address3); 
document.write('&#64;'); 
document.write(domain1+domain2); 
document.write('.'); 
document.write(ext); 
document.write('">'); 
document.write(address1+address2+address3);
document.write(' at ');
document.write(domain1+domain2);
document.write('.');
document.write(ext);
document.write('</a'); 
document.write('><BR>'); 
document.write('<FONT SIZE="-1"><B>');
document.write('&copy;');
document.write( ano+ ' DICA Internet &amp; Computer Services</B></FONT><BR>');
document.write('<FONT SIZE="+2" FACE="Bodoni MT Ultra Bold"><B>DICA</B></FONT><BR>');
//document.write('<P>&nbsp;<\P>')
document.write('<Font Size=-1>last updated on '+mes+'/'+dia+'/'+ano+  '  <\Font><BR>');
document.write('<Font Size=-1>&uacute;ltima atualiza&ccedil;&atilde;o  '+dia+'/'+mes+'/'+ano+  ' <\Font><BR>');
document.write('<Font Size=-1>ultima actualizaci&oacute;n en   '+dia+'/'+mes+'/'+ano+  ' <\Font><BR>');
document.write('<\CENTER>')
}
}
//end of function


