function mail(name, isp)
{
	document.write('<a href=\"mailto:' + name + '&#064;' + isp + '?subject=Inquiry from Lincoln Institute website\">');
	document.write(name + '&#064;' + isp + '</a>');
}

function webmaster()
{
	document.write('<a href=\"mailto:' + 'LincolnInstWebmaster' + '&#064;' + 'dk' + '.co.nz?subject=Inquiry from Lincoln Institute website\">');
	document.write('Webmaster</a>');
}

function copyright()
{
	cyear=new Date();
	update=cyear.getYear();
	if (update < 2000) 
		update = update + 1900;

	document.write("Copyright &copy; 2002 - " + update + " by <a href='mailto:" + "LincolnInstCopyright&#064;dk" + ".co.nz?subject=Copyright inquiry from Lincoln Institute'>Data Koncepts</a><br>All rights reserved");
}

