function createDate(){

	var sDate = new Date()
	var sMonth = sDate.getMonth()
	var sDay = sDate.getDate()
	var sYear = sDate.getFullYear()
	if (sMonth == "0"){
		sMonth = "January"
	}
	else if (sMonth == "1"){
		sMonth = "February"
	}
	else if (sMonth == "2"){
		sMonth = "March"
	}
	else if (sMonth == "3"){
		sMonth = "April"
	}
	else if (sMonth == "4"){
		sMonth = "May"
	}
	else if (sMonth == "5"){
		sMonth = "June"
	}
	else if (sMonth == "6"){
		sMonth = "July"
	}
	else if (sMonth == "7"){
		sMonth = "August"
	}
	else if (sMonth == "8"){
		sMonth = "September"
	}
	else if (sMonth == "9"){
		sMonth = "October"
	}
	else if (sMonth == "10"){
		sMonth = "November"
	}
	else{
		sMonth = "December"
	}
	var sFullDate = sMonth + " " + sDay + ", " + sYear
	
	return sFullDate

}

