IE 6 (WinXP) stürzt ab

ThiefMaster
Der Browser stürzt da immer ab, @localhost gehts; im www nicht
wenn ich htmlstart() nicht ausführe gehts

php:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
93:
<?
function htmlstart($titel='Registrierung einer kostenlosen Kurz-URL')
{
 ?>
         <HTML>
         <head>
          <title><?=$titel?></title>
          <STYLE TYPE="TEXT/css">
           BODY
           {
            FONT-FAMILY: Verdana, Arial, Helvetica, sans-serif;
            COLOR: #FFFF00;
           }
           SELECT
           {
            FONT-SIZE: 12px;BORDER-WIDTH: 4px;
            FONT-FAMILY: Tahoma,Helvetica;BORDER-COLOR: #FF9A00
            COLOR: #000000;
            BACKGROUND-COLOR: #CFCFCF;
           }

           TEXTAREA
           {
            FONT-SIZE: 12px;
            FONT-FAMILY: Tahoma,Helvetica;
            COLOR: #000000;
            BACKGROUND-COLOR: #CFCFCF;
           }

           .input
            {
             FONT-SIZE: 12px;
             FONT-FAMILY: Tahoma,Helvetica;
             COLOR: #000000;
             BACKGROUND-COLOR: #00FFFF;
             border-width: 4px;
             border-color: #FF9A00
            }

            #tablea A:link, #tablea A:visited, #tablea A:active { COLOR: #C0F8F0; TEXT-DECORATION: underline; }
            #tablea A:hover { COLOR: #C0F8F0; TEXT-DECORATION: none; }
            #tableb A:link, #tableb A:visited, #tableb A:active { COLOR: #C0F8F0; TEXT-DECORATION: underline; }
            #tableb A:hover { COLOR: #CCFFFF; TEXT-DECORATION: none; }
            #tablecat A:link, #tablecat A:visited, #tablecat A:active { COLOR: #ffffff; TEXT-DECORATION: underline; }
            #tablecat A:hover { COLOR: #ffffff; TEXT-DECORATION: none; }
            #tabletitle A:link, #tabletitle A:visited, #tabletitle A:active { COLOR: #C0F8F0; TEXT-DECORATION: none; }
            #tabletitle A:hover { COLOR: #C0F8F0; TEXT-DECORATION: underline; }
            #tabletitle { background-image: url(cellpic_blau.jpg); }
            .clsCursor { cursor: hand}

            #tablea, #tableb
            {
             font-family: Verdana, Arial, Helvetica, sans-serif;
             font-size: 12;
             font-weight: bold;
            }
          </STYLE>
         </head>
<body bgcolor="#000099" text="#CCFFCC" background="topback.gif">
      <table width="100%" cellpadding=0 cellspacing=1 align="center" border=0 bgcolor="#000033">
             <tr>
                 <td bgcolor="#0830b0" align="center">
                     <table width="100%" border="0" cellspacing="0" cellpadding="0">
                            <tr>
                                <td align="center" id="tabletitle" style="filter: Blur(strength=25)">
                                     <font id="tabletitle" size="+2">Kostenlose Kurz-URLs by <a href="http://www.planetcoding.net" id="tabletitle">PlanetCoding</a></font>
                                </td>
                            </tr>
                     </table>
                     <br>
                     <table cellpadding=4 cellspacing=1 border=0 width="98%" bgcolor="#000000">
                     </table>
 <?
}

function htmlend()
{
 ?>
                  </td>
            </tr>
     </table>
     <br>
     <table bgcolor="#000000" cellpadding=4 cellspacing=1 border=0 align="center">
            <tr>
                  <td bgcolor="#0060c0" id="tablea"><font face="Tahoma, Verdana, Arial, Helvetica, sans-serif" size="1"><b>Copyright © 2002 by Adrian 'ThiefMaster' Mönnich &lt;<a href="mailto:adrian@planetcoding.net">adrian@planetcoding.net</a>&gt;</b></font></td>
            </tr>
     </table>
</body>
        </HTML>
 <?
}
?>