// JavaScript Document
<!--  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 -->



<!-- open fedex

function fedex() {
var fedex = window.open('http://fedex.com/Tracking?ascend_header=1&clienttype=dotcom&cntry_code=us&language=english&tracknumbers=','','scrollbars=yes,menubar=yes,height=600,width=800,resizable=yes,toolbar=yes,location=yes,status=yes');
}

// end open fedex -->



function TrackFedEx()
{
string TextBox1= document.getElementById('FedExNo');

window.open(''+self.location,'mywin',
'left=20,top=20,width=500,height=500,toolbar=1,resizable=0');

/* Window.open("http://fedex.com/Tracking?ascend_header=1&clienttype=dotcom&cntry_code=us&language=english&tracknumbers=" + TextBox1.value); */
}





