Contact Us
Phone: 1-800-393-5881
or email us
   

    


<-Back
Caesars Lake Tahoe

You've arrived at Caesars Tahoe. Overlooking the shimmering beauty of Lake Tahoe and the Sierra Nevada Mountains. Caesars Mountain Empire is a world of unparalleled luxury and fun. Famous name entertainment, summer and winter sports abound on the gorgeous azure of Lake Tahoe. Caesars Tahoe is king of the hill, so it's no wonder that you can wager on diversions worthy of princes -- baccarat, mini-baccarat, and even horse racing. Spin the roulette wheel. Pick up a hand and try your luck at blackjack, poker, caribbean stud poker, pai gow, pai gow poker, or Let It Ride poker. Try for a jackpot on one of more than 1,000 slot machines which have rewarded their lucky players with vacations, cars and literally millions of dollars. If you're a sports fan, you can bet on the best at our Race & Sports Book area.



Make Your Reservation Request Today





#!/usr/bin/perl ############################################################## # # # MultiHTML 1.9 # # # ############################################################## # # # JCS Web Works # # www.jcserv.net # # scripts@jcserv.net # # # # Copyright (c)199-2000 Josh's Computer Services # # All Rights Reserved # # # # This program does not need any editing. # # All settings are done from the SSI command. # # More information can be found in the Read Me.txt file. # # # ############################################################## #Allowed File Extensions: $allowed_files = "htm,html,shtml,shtm"; #MultiHTML 9.1 will only use files with the above extensions. print "Content-type: text/html\n\n"; @allowed = split /,/, $allowed_files; foreach (@allowed) { $_ .= "\n"; } use CGI qw(:standard); $cgi=new CGI; $multi=$cgi->param("multi"); foreach $line (@allowed) { chomp($line); if ($multi =~ /$line/i) { &print; exit; } } print "
Merge HTML Error: Unallowed Merge file extension.
\n"; sub print { print "\n\n\n"; open(FILE, "$multi") or die (print "
Merge HTML Error: Multi file not found.
\n"); @files=; close(FILE); foreach $line (@files) { print $line; } }