var datemodif= new Date();
	var today=datemodif.getDate();
	var month1=datemodif.getMonth();
	var year=datemodif.getYear();
	var month2=month1;

	if (month2==0) month2="January";
	else if (month2==1) month2="February";
	else if (month2==2) month2="March";
	else if (month2==3) month2="April";
	else if (month2==4) month2="May";
	else if (month2==5) month2="June";
	else if (month2==6) month2="July";
	else if (month2==7) month2="August";
	else if (month2==8) month2="September";
	else if (month2==9) month2="October";
	else if (month2==10) month2="November";
	else if (month2==11) month2="December";

	document.write( month2," " ,today,", " , year);
