<%@ page contentType="image/svg-xml" %>
<%@ page import="com.agile.libtemplate.*,java.io.*" buffer="16kb" %>
<svg width='500' height='200' onload='svg_doc_onload_init(evt)'>
<script type='text/ecmascript'>
<![CDATA[
var onload_init_list = new Array();
function svg_doc_onload_init (evt) {
	for(var i = 0; i < onload_init_list.length; i++)
		(onload_init_list[i])(evt);
}
]]>
</script>
<script type='text/ecmascript'>
var SVG_Document = null;
function init_svg_doc(e) {
	SVG_Document = e.getTarget().getOwnerDocument()
}
onload_init_list[onload_init_list.length] = init_svg_doc;
</script>


// Include a JSP file that contains Objects for subcomponents.
// The names of the CCG-Objects are CCG1, CCG2, CCG3 and CCG4.
<%@ include file="subcomponents.jsp" %>


<%
PrintWriter pwout = new PrintWriter(out, true);
	
String	RB_list[] = { CCG1, CCG2, CCG3, CCG4};
String	CB_list[] = { "ORCL", "MSFT", "INTC", "SUNW" };
AC_Info aci = new AC_Info(request, application);

	RB_RB_IntTemp2 RB_RB = new RB_RB_IntTemp2(aci, RB_list, CB_list, 4);
	RB_RB.CGM_rb_rb2(pwout);
%>
</svg> 