/*
	╔═════════════════════════╗
    ║      З  Trixital        ║
    ║ Comunicación e Sistemas ║
    ╟─────────────────────────╢
    ║         © 2004          ║
    ╚═════════════════════════╝
*/

window.onload = function(e)
{
	if( document.getElementById && document.createElement && document.createTextNode )
	{
		// Código A·N·T·I S·P·A·M
		if( contact = document.getElementById( "contacto" ) )
		{
			gestor1 = "ma";
			gestor2 = "il";
			gestor3 = "to";
			ae = "@";
			dir1 = "in";
			dir2 = "fo";
			domain1 = "la";
			domain2 = "bp";
			domain3 = "la";
			domain4 = "st";
			domain5 = ".n";
			domain6 = "et";
			solodir = dir1 + dir2 + ae + domain1 + domain2 + domain3 + domain4 + domain5 + domain6;
			total = gestor1 + gestor2 + gestor3 + ":" + solodir;
			
			a = document.createElement( "a" );
			lt = document.createTextNode( "<" );
			gt = document.createTextNode( ">" );
			a.setAttribute( "href" , total );
			a.setAttribute( "title" , "Acceda a su gestor de correo" );
			
			li = contact.parentNode;
			li.removeChild( contact );
			
			a.textContent = solodir;
			if( !a.firstChild )
				a.innerHTML = solodir;
			
			li.appendChild( lt );
			li.appendChild( a );
			li.appendChild( gt );
		}
	}
}