//onload functionfunction generic(){	//initialise the docking boxes manager ('session-id')	var manager = new dbxManager('demo');	//create new docking boxes group	var demogroup = new dbxGroup('menu','vertical','7','n','10','yes','open',		'Open','Close','Click-down and Drag to move this box','Click to %toggle% this box','use the arrow keys to move this box',', or press the enter key to %toggle% it','%mytitle%  [%dbxtitle%]');};//setup onload functionif(typeof window.addEventListener != 'undefined'){	//.. gecko, safari, konqueror and standard	window.addEventListener('load', generic, false);}else if(typeof document.addEventListener != 'undefined'){	//.. opera 7	document.addEventListener('load', generic, false);}else if(typeof window.attachEvent != 'undefined'){	//.. win/ie	window.attachEvent('onload', generic);}