| 1234567891011121314151617181920212223242526 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html>  <head>    <title>Google Charts</title>    <script src="../../js/amber.js" type="text/javascript"></script>    <script type="text/javascript">		 loadAmber({			files: ['GoogleCharts.js','GoogleChartsExamples'],			prefix: 'examples/googlecharts/js', // path for js files i think			ready: function() {			  $(function() {				smalltalk.IndexChartApp._new(); // Start the smalltalk App			  });		}}); 	</script>  </head>  <body>    <h1>Google Charts</h1>    <button onclick="smalltalk.Browser._open()">class browser</button>    <div id="pie_chart_div" style="width: 900px;height: 500px;">Loading Google Chart..</div>    <a href="popcharts.html">Try the Pop Charts!</a> example.  </body></html>
 |