function  whatsToday(){
today = new Date();
day = today.getDate();
month = today.getMonth();
year = today.getYear();

if (year == 100){
year += 1900;}

var HoldIt;
HoldIt = 0;

for(c=0;c<=month;c++){

if (c == 1){
HoldIt += 31};

if (c == 2){
HoldIt += 29};

if (c == 3){
HoldIt += 31};

if (c == 4){
HoldIt += 30};

if (c == 5){
HoldIt  += 31};

if (c == 6){
HoldIt += 30};

if (c == 7){
HoldIt += 31};

if (c == 8){
HoldIt += 31};

if (c == 9){
HoldIt += 30};

if (c == 10){
HoldIt += 31};

if (c == 11){
HoldIt += 30};
};



year *= 365;
all = day + HoldIt + year;
todaysStrip = all - 729855;
return todaysStrip;
};
