//------------------------------------------------------------------------------
// Email obfuscation functions - generate "mailto" links that can't be
// harvested easily

// NEED TO REINSTALL PHP+JS OBFUSCATOR
//------------------------------------------------------------------------------

function mailto(acctname) {
    document.write ("<a href=\"mailto:" + acctname + "@interfaceguru.com\">" + acctname + "@interfaceguru.com</a>");
	}

function mailto_alttext(acctname, text) {
	document.write ("<a href=\"mailto:" + acctname + "@interfaceguru.com\">" + text + "</a>");
	}


