we have since removed the feature to open/close the block. the problem is that anyone who had the block closed before we removed the open/close feature does not see the block.
we need to replace the existing cookie and set the new cookie to contain the correct value to open (expand) the block.
following is the part of code which set the original cookie. how do I modify this to expire the existing cookie and set the new one to expand the block? do I just set var A=1 and change the getTime()+ statement?
thank you for your help!var A=fetch_cookie("vbulletin_sidebar_collapse");if(A= ="1"){this.collapse(false)}};vBSidebar.prototype.t oggle_collapse=function(A){YAHOO.util.Event.stopEv ent(A);if(YAHOO.util.Dom.getStyle(this.sidebar,"di splay")=="none"){this.expand()}else{this.collapse( true)}return false};vBSidebar.prototype.collapse=function(A)
...........
{expires=new Date();expires.setTime(expires.getTime()+(1000*864 00*365));set_cookie("vbulletin_sidebar_collapse",A ,expires)};
