function call_showDetails(obj)
{
var box = obj.dt.id;
document.getElementById('DIV'+box).innerHTML = '
Please Wait...';
agent.call('library/do.wheretobuy.php','do_showDetails','DIV'+box,box);
}
function show()
{
var obj = document.getElementById('test');
obj.style.filter="blendTrans(duration=0.5);";
obj.filters.blendTrans.Apply();
obj.filters.blendTrans.Play();
//obj.focus();
//stm(Text[0],Style[5]);
//setTimeout('stickyhide()',100);
}
function onCloseFunc() {};
var oOptions=
{
/*all options are optional*/
/* [ bool ] if dependent is false, then each menu open/close independently*/
dependent:true,
/* [function] callback when a menu is opened*/
onOpen:show,
/* [function] ccallback when a menu is closed*/
/*onClose:onMyMenuClose,*/
onClose:onCloseFunc,
/* [array] cdefault ids of opened menues'
*/
/*openedIds:['my-dt-1','my-dt-3'],*/
openedIds:[],
/* [number ] seconds for animations*/
seconds:0.2,
/*[ bool ] set true if the animation is to be played slower and slower and vise versa*/
easeOut:true,
/*[ bool ] set true if the animation is to be played*/
animation:true
}
var areaOpt=
{
/*all options are optional*/
/* [ bool ] if dependent is false, then each menu open/close independently*/
dependent:true,
/* [function] callback when a menu is opened*/
onOpen:call_showDetails,
/* [function] ccallback when a menu is closed*/
/*onClose:onMyMenuClose,*/
onClose:onCloseFunc,
/* [array] cdefault ids of opened menues' */
/*openedIds:['my-dt-1','my-dt-3'],*/
openedIds:[],
/* [number ] seconds for animations*/
seconds:0.2,
/*[ bool ] set true if the animation is to be played slower and slower and vise versa*/
easeOut:true,
/*[ bool ] set true if the animation is to be played*/
animation:true
}
var setting = new AccordionMenu.setting('my-dl',oOptions);