function mail(d, u, t)
{
	var e = u + "@" + d;
	var h = "mailto:" + e;
	if ( t == null ) { t = e; }
	var s = '<a href="' + h + '">' + t + '</a>';
	document.write(s);
}


function contact(t)
{
	if ( t == null ) { t = "Contact"; }
	mail("cusimano" + "." + "com", "support", t);
}
