// JavaScript Document

function Mail(box) {
   domain="triscendance.com";
   document.write("<a href=\"mailto:"+box+"@"+domain+"\">"+box+"@"+domain+"</a>"); }

function expand(obj) {
	jka = document.getElementById(obj).style.display;
	(jka == 'none') ? document.getElementById(obj).style.display = 'block' : document.getElementById(obj).style.display = 'none'; }
