1. Welcome! Please take a few seconds to create your free account to post threads, make some friends, remove a few ads while surfing and much more. ClutchFans has been bringing fans together to talk Houston Sports since 1996. Join us!

Pre-Season Schedule

Discussion in 'Houston Rockets: Game Action & Roster Moves' started by yaomania, Jul 28, 2005.

  1. yaomania

    yaomania Member

    Joined:
    Oct 24, 2002
    Messages:
    442
    Likes Received:
    0
    Houston Rockets Announce 2005 Preseason Schedule
    Magic Visit Toyota Center for “Clutch City Classic” Presented by Southwest Airlines

    HOUSTON – The Houston Rockets today announced their eight-game 2005 preseason schedule, highlighted by three home games at Toyota Center. On Wednesday, Oct. 12, the Rockets will host the Orlando Magic in the 11th annual “Clutch City Classic” Presented by Southwest Airlines – a benefit game dedicated to local charities.

    The “Clutch City Classic” Presented by Southwest Airlines tips off another season full of Rockets charity fundraisers and community programs. In the first 10 years, proceeds from the “Clutch City Classic” have gone to Houston City Parks, the Phoenix Outreach Youth Center, Kid-Care, SEARCH, AAMA, the NAACP, Vecinos Unidos, the Twin Towers Fund and grassroots basketball programs. Rockets owner Leslie Alexander’s commitment to the Houston community has translated into over $6 million in charitable contributions and countless youth programs over the last 12 years.

    Along with the “Clutch City Classic”, the Rockets will host preseason games at Toyota Center vs. the Washington Wizards on Oct. 23 and the Utah Jazz on Oct. 26. The Rockets will play other preseason games away from Houston against the Philadelphia 76ers (in Philadelphia), the San Antonio Spurs (in San Antonio), the Seattle SuperSonics (in Oklahoma City), the Memphis Grizzlies (in Memphis), and the New Orleans Hornets (in Laredo).

    Season ticket packages, which include three preseason and 41 regular season home dates, are available in most price categories. Deposits are being accepted for mini-plans, which include half-season, 14-game, and six-game plans by calling (713) 627-DUNK (3865) or visiting www.rockets.com for details.

    The Houston Rockets 2005 preseason schedule follows.


    Date Day Opponent Time Site
    Oct. 11 Tue. at Philadelphia 6 p.m. Wachovia Center
    Oct. 12 Wed. vs. Orlando 7:30 p.m. Toyota Center
    Oct. 15 Sat. at San Antonio 7:30 p.m. SBC Center

    Oct. 17 Mon. vs. Seattle 7:30 p.m. Ford Center

    Oct. 22 Sat. at Memphis 7 p.m. FedEx Forum

    Oct. 23 Sun. vs. Washington 7:30 p.m. Toyota Center

    Oct. 26 Wed. vs. Utah 7:30 p.m. Toyota Center
    Oct. 27 Thu. vs. New Orleans 7:30 p.m. Laredo Civic Center

    [edited to fix spacing]
     
  2. droxford

    droxford Member

    Joined:
    Oct 26, 2001
    Messages:
    10,598
    Likes Received:
    2,131
    Code:
    
    <script language="JavaScript"><!--
    function timeTillDate(then) {
        now = new Date();
    
        thenTime = then.getTime();
        nowTime  = now.getTime();
    
        var difference = thenTime-nowTime;
    
        var daysDifference = Math.floor(difference/1000/60/60/24);
        difference = difference - daysDifference*1000*60*60*24;
    
        var hoursDifference = Math.floor(difference/1000/60/60);
        difference = difference - hoursDifference*1000*60*60
    	
    	var minutesDifference = Math.floor(difference/1000/60);
        difference = difference - minutesDifference*1000*60
    
        var secondsDifference = Math.floor(difference/1000);
    
        var string = '';
    
        if (daysDifference > 0) {
            string += daysDifference + ' day';
            if (daysDifference > 1) string +='s';
            string += ' ';
        }
    
        if (hoursDifference > 0) {
            string += hoursDifference + ' hour';
            if (hoursDifference > 1) string +='s';
            string += ' ';
        }
    	
    	if (minutesDifference > 0) {
            string += minutesDifference + ' minute';
            if (minutesDifference > 1) string +='s';
            string += ' ';
        }
    
        if (secondsDifference > 0) {
            string += secondsDifference + ' second';
            if (secondsDifference > 1) string +='s';
            string += ' ';
        }
    
        return string;
    
    }
    function runclock(){
    	//year, month (January is 0),day, hour, minute, second
    	document.getElementById("timer").innerHTML = timeTillDate(new Date(2005,9,11,18,0,0));
    	setTimeout('runclock()',1000);
    }
    
    
    //--></script>
    
    Time until the first Rockets 2005 pre-season game:<br><br>
    
    <div id="timer" style="font-family: Arial, Helvetica, sans-serif; font-weight: bold; font-size: 220%;"></div>
    
    <script language="JavaScript"><!--
    var runUntil = 1;
    	runclock();
    //--></script>
    
    
     
    #2 droxford, Jul 28, 2005
    Last edited: Jul 28, 2005
  3. Blatz

    Blatz Member

    Joined:
    Oct 27, 2002
    Messages:
    7,224
    Likes Received:
    3,477
    No pre-season games over seas?
     
  4. room4rentsf

    room4rentsf Member

    Joined:
    Dec 11, 2003
    Messages:
    2,409
    Likes Received:
    5
    man im still waiting for the regular season schedule..

    3 months and counting..

    J
     
  5. thiagu88

    thiagu88 Member

    Joined:
    Jul 25, 2005
    Messages:
    243
    Likes Received:
    0
    i need basketball....or ill die...when are nba video games going to come out?
    Cant Wait!!!
     
  6. Slick Rick

    Slick Rick Member

    Joined:
    Sep 1, 2003
    Messages:
    288
    Likes Received:
    0
    The Regular Season Schedule should be released in the second week of August. :)
     
  7. droxford

    droxford Member

    Joined:
    Oct 26, 2001
    Messages:
    10,598
    Likes Received:
    2,131
    Here's a web page containing some Javascript code I wrote that will countdown the days, hours, minutes, and seconds until the first preseason game. I wonder if Clutch would be willing to stick this code into the bbs homepage?

    HTML:
    
    <html>
    <head>
    	<title>Untitled</title>
    
    <script language="JavaScript"><!--
    function timeTillDate(then) {
        now = new Date();
    
        thenTime = then.getTime();
        nowTime  = now.getTime();
    
        var difference = thenTime-nowTime;
    
        var daysDifference = Math.floor(difference/1000/60/60/24);
        difference = difference - daysDifference*1000*60*60*24;
    
        var hoursDifference = Math.floor(difference/1000/60/60);
        difference = difference - hoursDifference*1000*60*60
    	
    	var minutesDifference = Math.floor(difference/1000/60);
        difference = difference - minutesDifference*1000*60
    
        var secondsDifference = Math.floor(difference/1000);
    
        var string = '';
    
        if (daysDifference > 0) {
            string += daysDifference + ' day';
            if (daysDifference > 1) string +='s';
            string += ' ';
        }
    
        if (hoursDifference > 0) {
            string += hoursDifference + ' hour';
            if (hoursDifference > 1) string +='s';
            string += ' ';
        }
    	
    	if (minutesDifference > 0) {
            string += minutesDifference + ' minute';
            if (minutesDifference > 1) string +='s';
            string += ' ';
        }
    
        if (secondsDifference > 0) {
            string += secondsDifference + ' second';
            if (secondsDifference > 1) string +='s';
            string += ' ';
        }
    
        return string;
    
    }
    function runclock(){
    	//year, month (January is 0),day, hour, minute, second
    	document.timer.countdown.value=timeTillDate(new Date(2005,9,11,18,0,0))
    	setTimeout('runclock()',1000);
    }
    //--></script>
    
    </head>
    
    <body onload="runclock()">
    
    <form name="timer">Time until the first Rockets 2005 pre-season game:<br>
    <input name="countdown" style="WIDTH: 252px" size=32></form>
    
    </body>
    </html>
    
    
     
  8. roswell raygun

    Joined:
    May 19, 2002
    Messages:
    727
    Likes Received:
    37
    T-Mac sat out his pre-season return to Orlando last year. It will be interesting to see if Stromile plays in Memphis.
     
  9. YallMean

    YallMean Member

    Joined:
    Mar 20, 2003
    Messages:
    14,284
    Likes Received:
    3,815
    Only 74 days. Damn, better get ready yall!
     
  10. Hippieloser

    Hippieloser Member

    Joined:
    Feb 25, 2003
    Messages:
    8,271
    Likes Received:
    2,136
    Hey yaomania, do you by chance know if the Rox are planning on doing another free scrimmage like they did last year?
     
  11. yaomania

    yaomania Member

    Joined:
    Oct 24, 2002
    Messages:
    442
    Likes Received:
    0
    Honestly, I don't know anything about Rockets planning yet - preseason or otherwise. I'm sure as soon as we know something - the information will be published here.
     
  12. Davidoff

    Davidoff Member

    Joined:
    Feb 18, 2004
    Messages:
    5,643
    Likes Received:
    9
    I'm glad we arent going over seas this year..
     
  13. T-2

    T-2 Member

    Joined:
    Apr 29, 2002
    Messages:
    735
    Likes Received:
    8
    Yep, it was a sensible move that worked really well last year. (Why waste vengeance on a meaningless game?) On the other hand, there isn't as much acrimony with Swift as there was with T-Mac/Weisbrod (nor is he an MVP caliber player that you risk injuring), so my guess is Swift will play the usual token minutes.

    Come regular season, if we don't see Swift average big numbers (20 pts or 10 rebounds) against Memphis this year, I'll be disappointed. Should be fun!
     
  14. tim562

    tim562 Member

    Joined:
    Feb 16, 2004
    Messages:
    4,499
    Likes Received:
    199
    I was ready the day after the loss to the Mavs. I"ve been ready!!! :D :D
     
  15. Hippieloser

    Hippieloser Member

    Joined:
    Feb 25, 2003
    Messages:
    8,271
    Likes Received:
    2,136
    b****, quit holding out on us! :mad:


    ;)
     
  16. droxford

    droxford Member

    Joined:
    Oct 26, 2001
    Messages:
    10,598
    Likes Received:
    2,131
    Heh.. I edited my reply (second post) on this thread. Check it out.
     
  17. Rockets2K

    Rockets2K Clutch Crew

    Joined:
    Mar 22, 2000
    Messages:
    18,050
    Likes Received:
    1,271
    that is so totally cool drox...:D

    good job.
     
  18. MR. MEOWGI

    MR. MEOWGI Contributing Member

    Joined:
    Jul 2, 2002
    Messages:
    14,382
    Likes Received:
    13
    That would be a cool signature.
     
  19. Rockets2K

    Rockets2K Clutch Crew

    Joined:
    Mar 22, 2000
    Messages:
    18,050
    Likes Received:
    1,271

    I already tried it....sigs have a limit of 500 characters...it is too long even after cutting out everything else. :(
     
  20. droxford

    droxford Member

    Joined:
    Oct 26, 2001
    Messages:
    10,598
    Likes Received:
    2,131
    hmm... I'm unable to add any code to my sig. Instead of it interpreting the code, it just displays the code.
     

Share This Page

  • About ClutchFans

    Since 1996, ClutchFans has been loud and proud covering the Houston Rockets, helping set an industry standard for team fan sites. The forums have been a home for Houston sports fans as well as basketball fanatics around the globe.

  • Support ClutchFans!

    If you find that ClutchFans is a valuable resource for you, please consider becoming a Supporting Member. Supporting Members can upload photos and attachments directly to their posts, customize their user title and more. Gold Supporters see zero ads!


    Upgrade Now