// JavaScript Document
//beginning date script
current = new Date();
month = current.getMonth();
day = current.getDate();
year = current.getFullYear();
week = current.getDay();
hour = current.getHours();
mins = current.getMinutes();
if(month == 0) month = "January";
if(month == 1) month = "February";
if(month == 2) month = "March";
if(month == 3) month = "April";
if(month == 4) month = "May";
if(month == 5) month = "June";
if(month == 6) month = "July";
if(month == 7) month = "August";
if(month == 8) month = "September";
if(month == 9) month = "October";
if(month == 10) month = "November";
if(month == 11) month = "December";
if(week == 0) week = "Sunday";
if(week == 1) week = "Monday";
if(week == 2) week = "Tuesday";
if(week == 3) week = "Wednesday";
if(week == 4) week = "Thursday";
if(week == 5) week = "Friday";
if(week == 6) week = "Saturday";