// mail thing
function mailto_link(user,anchorText)
	{
		if (anchorText == '')
		{
			anchorText = user + "@" + 'orgoniteinfo.com'
		}
		
		document.write("<A CLASS=\"intrasite-link\" HREF=\"mailto");
		document.write(":" + user + "@");
		document.write('orgonite.info' + "\">" + anchorText + "<\/A>");
	}
