<html-fragment>
	<div>Demo imported data</div>
	<embedded-script><![CDATA[
		AddNode : function(s){
			var oD = document.createElement("div");
			oD.appendChild(document.createTextNode(s));
			this.getContainer().appendChild(oD);
		},
		embedded_init : function(){
			this.AddNode("embedded_init #2 invoked");
		},
		
		embedded_destroy : function(){
			this.AddNode("embedded_destroy #2 invoked");		
		}
	]]></embedded-script>
</html-fragment>