/* open link in parent window
	http://developer.mozilla.org/en/docs/DOM:window.opener
	http://www.faqs.org/docs/htmltut/linking/linking_famsupp_75.html
	http://www.webmasterworld.com/forum91/17.htm  */
function targetopener(mylink)
{
if (! (window.focus && window.opener))return true;
if (window.opener.closed) return true;

window.opener.focus();
window.opener.location.href=mylink.href;
// window.close();

return false;
}

function doPerson(part1, part2, part3) {
 var a, b, c, d, e;
 a = '<a href=\"mai';
 b = part1;
 c = '\" class=\"mail\">';
 a += 'lto:';
 d = part1;
 b += '@';
 d += '<span style=\'display:none\'>REMOVE</span>';
 e = '<\/a>';
 b += part3;
 d += '@';
 d += part3;
 document.write(a+b+c+d+e);
}
