function ccWPCreateMenu(width,pageId,display) {
  var murl = location.href + ((location.href.indexOf("?")>0)? "&" : "?") + 
    ((display=="default") ? "display=default&folder=" : "display=menu&page=") + pageId;
  var s = "<FRAMESET COLS='"+width+",*'>";
  s += "<FRAME frameborder=0 src='" + murl + "' name=menu marginheight=0 marginwidth=0 noresize title='menu' onload='top.frames[0].setFirstPage()'>";
  s += "<FRAME frameborder=0 name='content' src='/invisible.html' title='content'>";
  s += "</FRAMESET>";
  document.open();
  document.write(s);
  document.close();
}