\r\n");
// Wire up the client-side events
// If these should conflict with other event handlers specified
// in the calling file, then you should move those event handlers
// into the functions below.
window.onload=myWindowLoad;
window.onresize=myWindowResize;
function myWindowLoad()
{
mySetHeight();
cspbShowSection(1);
}
function myWindowResize()
{
mySetHeight();
cspbRefresh();
}
// Client-side PanelBar height setting
function mySetHeight()
{
if(window.innerHeight)
{
//cspbSetHeight(window.innerHeight);
}
else if(document.body.clientHeight)
{
//cspbSetHeight(document.body.clientHeight);
}
}