<?xml version="1.0"?>
<html xmlns="http://www.w3.org/1999/xhtml" 
      xmlns:svg="http://www.w3.org/2000/svg">
  <head>
    <script>
      function change_style(style_string)
      {
      document.getElementById("circ").setAttribute("style", style_string);
      }
    </script>
  </head>
  <body>
    <button onclick="change_style('fill:red;');">red</button>
    <button onclick="change_style('fill:blue;');">blue</button>
    <svg:svg>
      <svg:circle cx="100" cy="100" r="1cm" id="circ" style="fill:red;"/>
    </svg:svg>
  </body>
</html>

