function email(name, at)
{
	document.write("<a href=\"mailto");
	document.write(":" + name + "@" + at + "\">");
	document.write(name + "@" + at + "<\/a>");
}

function email2(name, at, title)
{
	document.write("<a href=\"mailto");
	document.write(":" + name + "@" + at + "\">");
	document.write(title + "<\/a>");
}

function email_img(name, at, img)
{
	document.write("<a href=\"mailto");
	document.write(":" + name + "@" + at + "\">");
	document.write("<img src=\"" + img + "\" border=\"0\">");
	document.write("<\/a>");
}