// JavaScript Document hubris.js
// functions

//declare variables and their paths
var txt = document.getElementById("txt");

//declare variables
var txt1 = "@cfs" + "international";
var txt2 = "co" + "m";
var txt3 = "hie" + "nly";
var txt4 = ".";
var txt5 = "a" + "u";
var txt6 = "<a href='mailto:";
var txt7 = " ' rel='nofollow'>" + txt3 + txt1 + txt4 + txt2 + txt4 + txt5 + "</a>";
txt.value = txt6 + txt3 + txt1 + txt4 + txt2 + txt4 + txt5 + txt7;

// actions
document.getElementById('txt').innerHTML = txt.value;
/* <a href="mailto:a@b.c.d" class="external text" title="mailto:a@b.c.d" rel="nofollow">a@b.c.d</a> */

// branching