ragazzi.. posso intromettermi?
1. vorrei dare un consiglio... lo slash di chiusura del tag si deve mettere preceduto da uno spazio (<script src="..." />) e in nomi dei tag devono essere minuscoli..

2. vorrei che mi aiutaste a chiarire un mio forte dubbio:
sul w3c dice che i tag SCRIPT e NOSCRIPT non sono supportati da XHTML... com'è possibile che io provo ad inserire uno script e me lo esegue tranquillamente? http://www.w3.org/TR/xhtml-basic/#s1.3.2 (il link)

codice:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
                      "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="it" lang="it">
<head>
   <title>Esempio XHTML</title>
<meta http-equiv="Content-Type" content="text/application+xhtml">
<script>

alert("ciao");

</script>
     <meta name="keywords" content="XML, SGML, XSL, DSSSL" />
</head>
<body>
    

Ciao mondo!</p>
</body>
</html>
vi ringrazio