006

<html>
<head>
  <script language="javascript">
    x=1;
    alert('CABECERA='+x);
  </script>
</head>
<body>
  <script language="javascript">
    x++;
    alert('CUERPO='+x);
    x++;
    alert('CUERPO='+x);
  </script>
</body>
</html>