The jelly website has a Javascript error:

Line: 22
Error: Unterminated string constant

This is on Internet Explorer version 6.0.28.

The problem seems to be in this block:

              if (document.layers) {
                document.writeln("
                  <link rel='stylesheet' type='text/css'
href='./style/ns4_only.css' media='screen' />
                  <link rel='stylesheet' type='text/css'
href='./style/maven_ns4_only.css' media='screen'/>
                ");
              }

I think it should be:

              if (document.layers) {
                document.writeln("<link rel='stylesheet' type='text/css'
href='./style/ns4_only.css' media='screen' />" +
                                  "<link rel='stylesheet' type='text/css'
href='./style/maven_ns4_only.css' media='screen'/>");
              }

Using the + as a multiline joiner.

It also looks like the font is bigger than it should be, which may be
related to the Javascript error.

-jason horman
This email message and any attachments are for the sole use of the intended
recipient(s) and may contain confidential and privileged information. Any
unauthorized review, use, disclosure or distribution is prohibited. If you
are not the intended recipient or his/her representative, please contact the
sender by reply email and destroy all copies of the original message.

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to