// Information for nospammail code gleened from http://javascript.internet.com and http://www.twothirty.com/
// Altered so that I can use the same kind of script at work too.

function nospamemail(user,domain,suffix)
{
addressstring = "mailto:" + user + "@" + domain + "." + suffix;
window.location = addressstring;
}

// Information for calldate code comes from http://webreference.com tutorials.

function calldate()
{
var currentDate = now.getDate();
var currentMonth = now.getMonth();
var currentYear = now.getFullYear()
document.write = currentDate + " " + currentMonth + " " +currentYear;
}