function formatDate(date) 
{
  return date.getMonth() + '/' + date.getDate() + '/' + date.getFullYear()
}
