This code:
--------------
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<base target="40thPix_DisplayArea"/>
<title> Click on a small picture...</title>
<link rel="stylesheet" type="text/css" href="Master.css"/>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
</head>
<body>
<script type="text/javascript">
document.write("<p id='ThumbNavListloading'>Loading thumbnails, please
wait...<\/p>");
.......
</script>
--------------
makes the W3C's SGML parser flag the 'document.write' line with
-------------------------------------
Line 12, column 45: document type does not allow element "p" here
...nt.write("<p id='ThumbNavListloading'>Loading thumbnails, please wait...<\/p>
The element named above was found in a context where it is not allowed. This
could mean that you have incorrectly nested elements -- such as a "style"
element in the "body" section instead of inside "head" -- or two elements that
overlap (which is not allowed). [...]
Seems like it's not buying the <script> command - but the code works, so
*somebody* is recognizing it.
Can anybody tell me where I've sinned?