function mailto(name, domain, tld, tag, subj)
{
	var address;
	var url;
	var http='mailto:';
	
	address=http+name+'@'+domain+'.'+tld;
	url='<a href="'+address+'?subject='+subj+'">'+tag+'</a>';
	//url=address;
	document.write(url);
}

function reveal(obj, reason, objname) 
{
	hiddenobj=document.getElementById(objname);
	if (reason == 1) {
		obj.style.textDecoration="underline";
		obj.style.cursor="pointer";
		hiddenobj.style.visibility="visible";
	} else {
		obj.style.textDecoration="none";
		hiddenobj.style.visibility="hidden";
	}
}

function hide(objname)
{
	obj=document.getElementById(objname);
	obj.style.visibility="hidden";
}

function hilite(obj)
{
	obj.style.textDecoration="underline";
}
function resetText(obj)
{
	obj.style.textDecoration="none";
}
