<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>JavaScript in XML</title>
</head>

<body>
<p>I am not generated by a script</p>

<script type="text/javascript"><![CDATA[
var p = document.createElement("p");
p.appendChild(document.createTextNode("But I am"));
document.getElementsByTagName("body")[0].appendChild(p);
]]></script>

</body>
</html>
