var now = new Date();
var textout;
var month = now.getMonth();
var date = now.getDate();
var date2;
if (date >= 1 && date <= 4) { date2 = 5};
if (date >= 5 && date <= 9) {date2 = 10};
if (date >= 10 && date <= 14) {date2 = 15};
if (date >= 15 && date <= 19) {date2 = 20};
if (date >= 20 && date <= 24) {date2 = 25};
if (date >= 25 && date <= 30) {date2 = 30};
if (date == 31) {date2 = 31};
if (month==0) textout="Jan";
if (month==1) textout="Feb";
if (month==2) textout="Mar";
if (month==3) textout="Apr";
if (month==4) textout="May";
if (month==5) textout="Jun";
if (month==6) textout="Jul";
if (month==7) textout="Aug";
if (month==8) textout="Sep";
if (month==9) textout="Oct";
if (month==10) textout="Nov";
if (month==11) textout="Dec";
textout += " " + date2 + " 2009";
//textout += " " + date2 ;

