function makeDate() {
   now = new Date();
   return (now.getMonth()+1 + '/' + now.getDate() + '/' + now.getYear()) ;
}