//External Script called date.js
var today = new Date ();
nday = today.getDay ();
day = today.getDate ();
month = today.getMonth () + 1;
year = today.getYear ();
year = today.getFullYear ();
var ndayn = today.getDay ();
var nmonth

//Script section that will verify the number of the month and will asign the full name into the nmonth var
if (month == 1) {
	nmonth = "January";
	}
	else {
		if (month == 2) {
			nmonth = "February";
			}
			else {
				if (month == 3) {
					nmonth = "March";
					}
					else {
						if (month == 4) {
							nmonth = "April";
							}
							else {
								if (month == 5) {
									nmonth = "May";
									}
									else {
										if (month == 6) {
											nmonth = "June";
											}
											else {
												if (month == 7) {
													nmonth = "July";
													}
													else {
														if (month == 8) {
															nmonth = "August";
															}
															else {
																if (month == 9) {
																	nmonth = "September";
																	}
																	else {
																		if (month == 10) {
																			nmonth = "October";
																			}
																			else {
																				if (month == 11) {
																					nmonth = "November";
																					}
																					else {
																						if (month == 12) {
																							nmonth = "December";
																							}
																					}
																			}
																	}
															}
													}
											}
									}
							}
					}
			}
	}

//Script section that will verify the number of the day and will asign the full name of the day into the ndayn var
if (nday == 1) {
	ndayn = "Monday";
	}
	else {
		if (nday == 2) {
			ndayn = "Thusday";
			}
			else {
				if (nday == 3) {
					ndayn = "Wendesday";
					}
					else {
						if (nday == 4) {
							ndayn = "Thursday";
							}
							else {
								if (nday == 5) {
									ndayn = "Friday";
									}
									else {
										if (nday == 6) {
											ndayn = "Saturday";
											}
											else {
												if (nday == 0) {
													ndayn = "Sunday";
													}
												}
										}
								}
						}
				}
		}

//Script section that will present the full date on the Web Page	when this one would be called
document.write("<font size=2 color=#1977B8 face='Comic Sans MS'>" + ndayn + ", " + day + " of " + nmonth + " of " + year + "." + "</font>");