﻿//script writes email addresses in mailto format
function writeMailTo(handle,dname){
    document.write("<a href=" + "mail" + "to:" + handle + "@" + dname + ">" + handle + "@" + dname + "</a>");
}

function writeMailToDB(address){
    document.write("<a href=" + "mail" + "to:" + address + ">" + address + "</a>");
}

function writeMailToCustText(handle,dname,linktext){
    document.write("<a href=" + "mail" + "to:" + handle + "@" + dname + ">" + linktext + "</a>");
}

function getTimeStamp(){
    var aDate = new Date();
    var stamp = aDate.getTime();

    return stamp;
}
