Message # 1 | 6:00 AM
In my website, I have a script that I need help to get working. This is my script.

Code
<script language="Javascript">
<!--
if (screen.width>=1024)
  {
document.write('<td width="20%"><table border="0" cellpadding="0" cellspacing="0" width="162">
<tr><td height="29" style="background:url("/Custom/Top2.png");color:#116111;" align="center"><b>Newest Tutorial</b></td></tr>
<tr><td height="160" style="background:url("/Custom/Middle2.png") #000000;padding:5px 5px 0 5px;">$MYINF_8$</td></tr>
<tr><td><img src="/Custom/Bottom2.png" border="0"></td></tr>
</table>
</td>');
  }
//-->
</script>

It is supposed to detect if someone has a widescreen monitor, and then add the extra box if it is widescreen.
For some unknown reason, its not working. No extra box appears. Does anyone know where I went wrong?