var yyyymmdd;
var mmdd;
var ssnName;

todaysDate = new Date();

yyyymmdd = (todaysDate.getFullYear() * 10000) + ((todaysDate.getMonth() + 1) * 100) + todaysDate.getDate();

