// ========================================================
//  Functions library containing regularily used functions
// ========================================================

// This function will take the date the current document was created
// and display the date
function docDate(myDate)
{
 var tmpDate = new Date(myDate);
 var fullDate = new Date();
 //alert(typeof(fullDate));
 //alert(tmpDate);
 //var today = new Date();
 var mnth = tmpDate.getMonth()+1; // return value 0-11, so add 1
 fullDate = tmpDate.getDate();
 fullDate = fullDate + "/" + mnth;
 fullDate = fullDate + "/" + tmpDate.getFullYear();
 //alert(fullDate);
 return fullDate;
}


