function current_date() {
	DaysofWeek = new Array()
	DaysofWeek[0]="Sunday"
	DaysofWeek[1]="Monday"
	DaysofWeek[2]="Tuesday"
	DaysofWeek[3]="Wednesday"
	DaysofWeek[4]="Thursday"
	DaysofWeek[5]="Friday"
	DaysofWeek[6]="Saturday"

	Months = new Array()
	Months[0]="January"
	Months[1]="February"
	Months[2]="March"
	Months[3]="April"
	Months[4]="May"
	Months[5]="June"
	Months[6]="July"
	Months[7]="August"
	Months[8]="September"
	Months[9]="October"
	Months[10]="November"
	Months[11]="December"

	RightNow = new Date()

	var day = DaysofWeek[RightNow.getDay()]
	var date = RightNow.getDate()
	var Month = Months[RightNow.getMonth()]
	var Year = RightNow.getFullYear()

	document.write("" +date+ " " +Month+ " " +Year+ "")
}


	function couponWindow(url) {
 	window.open(url,'newWindow','toolbar=yes,menubar=yes,resizable=no,scrollbars=no,status=no,location=no,width=425,height=300');
	}

	function tallWindow(url) {
 	window.open(url,'tallWindow','toolbar=no,menubar=no,resizable=yes,scrollbars=yes,status=no,location=no,width=525,height=500');
	}