function email( name, site ) {
	var address = name + "@" + site;
	document.write("<a href=\"mailto:" + address + "\">");
	document.write(address + "</a>");
}

function emaillt( name, site ) {
	var address = name + "@" + site;
	document.write("<a class=light href=\"mailto:" + address + "\">");
	document.write(address + "</a>");
}

function email_name( text, name, site ) {
	var address = name + "@" + site;
	document.write("<a href=\"mailto:" + address + "\">");
	document.write(text + "</a>");
}

function email_namelt( text, name, site ) {
	var address = name + "@" + site;
	document.write("<a class=light href=\"mailto:" + address + "\">");
	document.write(text + "</a>");
}

function email_name_subject_body( text, name, site, subject, body ) {
	var address = name + "@" + site;
	document.write("<a href=\"mailto:" + address + "?Subject=" + subject + "&body=" + body + "\">");
	document.write(text + "</a>");
}

function popup(mylink, windowname) {

	if (! window.focus)
			return true;

	var href;

	if (typeof(mylink) == 'string')

		href=mylink;

	else

		href=mylink.href;

	window.open(href, windowname, 'width=300,height=300,scrollbars=yes');

	return false;
}

