var objEvento = new Evento()

function elemento(elemento)
{
	return(document.getElementById(elemento));
}

function inserir(e)
{
	var origem = objEvento.orgEvento(e);
	var objCont = elemento("contato");
	
	objCont.innerHTML = "<p><strong>Envie seu e-mail para:</strong><br /><a href=\"mailto:"+origem.value+"\" class=\"Menu\">"+origem.value+"</a></p>";
}

function contato()
{
	var objBt = elemento("controles").elements;
	for(var i=0;i<objBt.length;i++)
	{
		objEvento.adEvento(objBt[i], "click", inserir);
	}
}

objEvento.adEvento(window, "load", contato);
