<!--  Begin hideMail
function hideMail(three, two, one){
   document.write('<a href="mailto:' + 
   one + '@' + two + '.' + three + '">' + 
   one + '@' + two + '.' + three + '</a>');
}
// End HideMail -->

<!-- to hide

function fullYear(anydate) {
    //returns the year (e.g. 1996) from any date object
    var xx = null;
    xx = anydate.getYear();
    if (xx < 1900) {xx = xx + 1900}
    return xx;
}
function monthDay(anydate) {
    //returns the day number (1-31) from any date object
    return anydate.getDate();
}
function monthName(anydate) {
    //returns the month name from any date object
    xx = anydate.getMonth()+1;
    nm=null;
    if (xx==1){nm="January"};
    if (xx==2){nm="February"};
    if (xx==3){nm="March"};
    if (xx==4){nm="April"};
    if (xx==5){nm="May"};
    if (xx==6){nm="June"};
    if (xx==7){nm="July"};
    if (xx==8){nm="August"};
    if (xx==9){nm="September"};
    if (xx==10){nm="October"};
    if (xx==11){nm="November"};
    if (xx==12){nm="December"};
    return nm;
}


function dm_long (datemodified) {
    var xx = null;
    var xx = "Last update on" + " " + monthName(datemodified) + " " + monthDay(datemodified) + ", "  + fullYear(datemodified);
    return xx;
}

// end hiding -->
