including precompiled JSP inside another JSP
inside page1.jsp I would like to do something like this:
<body onLoad="javascript:ajaxpage('start.jsp', 'middlePanel'); ">
...this should load my "precompiled" JSP page -- start.jsp into <div id="middlePanel">.
Currently the function ajaxpage() works well with HTML pages....but does not load the dynamic content of the JSP....any workarounds?
the function ajaxpage() has been defined in the javascript ajax.js which is available on the net.
Thanks!

