1 Fix: Object Killing in IE7 (view this page in IE7)

      <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
      	"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

      <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
      <head>
      	<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
          <script type="text/javascript">
            var test = {};

            alert(this['test']);

          </script>
          <script type="text/javascript">

            alert(this['test']);

            // this next chunk of code should never run.
            if (true == false){
              // I just added this to show that this block of code should never even run
              alert("This never fires");
              // comment out this line and the bug goes away
              var test;  // THIS SHOULD NOT IMPACT ON ANYTHING !!!!
              // I just added this to show that this block of code should never even run
              alert("This never fires"); 
            }

          </script>
        </head>
        <body>
        </body>
      </html>