|
Hotels in América
|
|
Albuquerque, NM.
Hotels |
|
Anaheim, Calif.
Hotels |
|
Arlington, VA.
Hotels |
|
Atlanta, GA.
Hotels |
|
Austin, TX.
Hotels
|
|
Baltimore, MD.
Hotels |
|
Bellevue, Wash.
Hotels |
|
Boston, Mass.
Hotels |
|
Dallas, TX.
Hotels |
|
Detroit, Mich.
Hotels |
|
Denver, Colo.
Hotels |
|
Charlotte, N.C.
Hotels |
|
Chicago, IL.
Hotels |
|
Columbus, OH.
Hotels |
|
El Paso, TX.
Hotels |
|
Florida Keys, FL
Hotels |
|
Fort Lauderdale, Fla.
Hotels |
|
Fort Worth, TX.
Hotels |
|
Honolulu, HI.
Hotels |
|
Houston, TX.
Hotels |
|
Indianapolis, Ind.
Hotels |
|
Kansas City, Mo.
Hotels |
|
Las Vegas, Nev.
Hotels |
|
Los Angeles, Calif.
Hotels |
|
Memphis, Tenn.
Hotels |
|
Miami, Fla.
Hotels |
|
Minneapolis-
St. Paul, Minn. |
|
Nashville, Tenn.
Hotels |
|
New York, NY.
Hotels |
|
Orlando, Fla.
Hotels |
|
Philadelphia, PA.
Hotels |
|
Phoenix, Ariz.
Hotels |
|
Sacramento, CA.
Hotels |
|
San Antonio, TX.
Hotels |
|
San Diego, Calif.
Hotels |
|
San Francisco, Calif.
Hotels |
|
Seattle, Wash.
Hotels |
|
St. Louis, Mo.
Hotels |
|
Tampa Bay, Fla.
Hotels |
|
Tucson, Ariz.
Hotels |
|
Washington, DC.
Hotels |
|
|
|
International
Hotels |
|
Amsterdam, Netherlands |
|
Auckland New Zealand
Hotels |
|
Australia Provence
Hotels |
|
Bangkok,
Thailand
Hotels |
|
Berlín,
Germany
Hotels |
|
Brugge,
Belgium
Hotels |
|
Buenos Aires,
Argentina |
|
Cancun, México
Hotels |
|
Ciudad de
México
Hotels |
|
Copenhague
Denmark
Hotel |
|
Dubai,
United Arab Emirates |
|
Dublín,
Ireland
Hotels |
|
Edinburgh,
UK Hotels |
|
Florence,
Italy
Hotels |
|
Geneva,
Switzerland
Hotels |
|
Glasgow, UK
Hotels |
|
Helsinki,
Finland
Hotels |
|
Hong Kong,
China
Hotels |
|
London,
England
Hotels |
|
Manchester,
UK
Hotels |
|
Melbourne,
Australia
Hotels |
|
Mexico City,
México
Hotels |
|
Milán,
Italy
Hotels |
|
Múnich,
Germany
Hotels |
|
Newcastle,
UK,
Hotels |
|
Nice, France
Hotels |
|
Olso, Norway
Hotels |
|
París France
Hotels |
|
Prauge, Czech
Hotels |
|
Pisa, Italy
Hotels |
|
Rio de
Janeiro, Brazil
Hotels |
|
Rotterdam,
Netherlands
Hotel |
|
Rome,
Italy
Hotels |
|
San José,
Costa Rica
Hotels |
|
São Paulo,
Brazil
Hotels |
|
Shanghai,
China
Hotels |
|
Singapore,
Singapore
Hotels |
|
Stockholm,
Sweden
Hotels |
|
Sydney,
Australia
Hotels |
|
Tokyo,
Japan
Hotels
|
|
Toronto,
Canada
Hotels |
|
Vancouver,
Canadá
Hotels |
|
Venice, Italy
Hotels |
|
Zúrich,
Switzerland Hotels
|
|
|
|
Vivid Seats Tickets
|
|
';
cal += ' ';
cal += '' + TR_start;
cal += '';
cal += month_of_year[month] + ' ' + year + '' + TD_end + TR_end;
cal += TR_start;
///////////////////////////////////
// DO NOT EDIT BELOW THIS POINT //
///////////////////////////////////
// LOOPS FOR EACH DAY OF WEEK
for(index=0; index < DAYS_OF_WEEK; index++) {
// PRINTS DAY
cal += TD_start + day_of_week[index] + TD_end;
}
cal += TD_end + TR_end;
cal += TR_start;
// FILL IN BLANK GAPS UNTIL TODAY'S DAY
for(index=0; index < dateObj.getDay(); index++) {
cal += TD_start + ' ' + TD_end;
}
// LOOPS FOR EACH DAY IN CALENDAR
for(index=0; index < DAYS_OF_MONTH; index++) {
if( dateObj.getDate() > index ) {
// RETURNS THE NEXT DAY TO PRINT
week_day =dateObj.getDay();
// START NEW ROW FOR FIRST DAY OF WEEK
if(week_day == 0) {
cal += TR_start;
}
if(week_day != DAYS_OF_WEEK) {
// SET VARIABLE INSIDE LOOP FOR INCREMENTING PURPOSES
var day = dateObj.getDate();
// PRINTS DAY
cal += TD_start + "" + day + "" + TD_end;
}
// END ROW FOR LAST DAY OF WEEK
if(week_day == DAYS_OF_WEEK) {
cal += TR_end;
}
}
// INCREMENTS UNTIL END OF THE MONTH
dateObj.setDate(dateObj.getDate()+1);
}// end for loop
cal += ' | |
';
cal += '';
cal += '';
cal += ' | |