
function mail(recipient,email,name) {
	var mailto = '<a href="mailto:';
	var atsign = "@";
	document.write(mailto + recipient + atsign + email + '" title="Click to open an E-mail window">' + name + '<\/a>');
	return 1;
}
//----------------------------------------------------------------------------------

function date_modified() {
	/*
		Purpose:
			This function picks up and displays the date from the dc.date.modired meta data
		Created by:
		 	Dan Servranckx on 4 Nov 2006
	*/
	meta = document.getElementsByName("dc.date.modified");
	if (meta.length == 1) {
		document.write(meta[0].content);
	}
	return true;
}
