CIS 363A Week 6 javascript

profilenathwngoow5g
lab_wk6.zip

cis363wk6iLab.jpg

e.jpg

library.js

/* Function NYEDays() Purpose: Calculate the number of days between New Year's and a given date Variables CheckDay: A date object containing the given date XYear: The 4-digit year value of the given date XDay: December 31 in the year of the given date DayCount: The number of days between New Year's Eve and the given date */ function NYEDays(CheckDay) { var XYear=CheckDay.getFullYear(); var XDay=new Date("December, 31, 2014"); XDay.setFullYear(XYear); var DayCount=(XDay-CheckDay)/(1000*60*60*24); DayCount=Math.round(DayCount); return DayCount; }

newyearseve.gif

nyeProblem.htm

The New Year's Event Agenda New Year's Eve Happy Hour New Year's Eve Concert New Year's Eve Party New Year's Day Brunch
New Year's Eve!

NEW YEAR'S EVE ENTERTAINMENT Consider us your complete New Year's Eve entertainment needs. We offer a excellent two days of events of elegance and style.

NEW YEAR'S EVE HAPPY HOUR

It starts at 5:00p.m. Mengle with everyone while consuming the finest spirits and eating the best horderves.

NEW YEAR'S EVE CONCERT

When you hear the band play and the artists sing, you are hearing our concert At 7:00p.m., listen to some of the best groups Atlanta has to offer.

NEW YEAR'S EVE PARTY

This is the event of the year. Jam to the sounds of everyone's favorite radio disc jockey and bring in the new year with a bang starting at 10:00 p.m.

NEW YEAR'S DAY BRUNCH

There is no other way to close out the vent with a delicious brunch with everyone's breakfast and lunch favorites at 11:00 a.m.

Elegance Entertainment

Elegance Entertainment is a company that specialize in major events. Established in 2003, Elegance has been providing events for the professional market in the Atlanta area.

Elegance Entertainment | 324 King Avenue | Atlanta, GA 30332 | (404) 555-2015

styles.css

body {margin: 0px} p b {color:green} h3 {font-family: sans-serif; color:red; margin-bottom:-20px} #npn {background-color:white; width:100%} #contact {font-family: sans-serif; color:red; font-size:8pt; text-align:center; border-top: 2px solid rgb(128,0,0)} #daycell {text-align:center; background-color:gold; color:red; font-size:10pt; font-family: sans-serif; border-bottom: 2px solid rgb(128,0,0)} #links {background-color: rgb(128,0,0); width: 100px} #links a {color: gold; text-decoration:none; font-size:8pt; font-family: sans-serif; display: block; padding: 1px; border: 3px solid rgb(128,0,0); margin: 0px; width: 100%} #links a.newgroup {margin-top: 10px} #links a:hover {border: 3px outset white; color: white} #logo {text-align: center; border-bottom: 1px solid rgb(128,0,0)} #firstcol {width: 50%; border-right: 1px solid rgb(128,0,0)} #secondcol {width: 50%} .firstp:first-line {font-variant: small-caps}