function getCurrentDate() {
    var dt,day1,month,year;
    dt = new Date();
    var now=new Date();
    month =now.getMonth() + 1;

    if(month==1)
    	month="January";
    if(month==2)
    	month="February";
    if(month==3)
    	month="March";
    if(month==4)
    	month="April";
    if(month==5)
    	month="May";
    if(month==6)
    	month="June";
    if(month==7)
    	month="July";
    if(month==8)
    	month="August";
    if(month==9)
    	month="September";
    if(month==10)
    	month="October";
    if(month==11)
    	month="November";
    if(month==12)
    	month="December";
    year1=now.getYear();
    if (year1<2000)
    	year1+=1900;
    var now_str= month + " " + now.getDate()  + ", " + year1;
    return now_str;
}