//<!--

var wlcp=wlcp||{};

wlcp.Comments = {
  init:function()
  {
    if ($$('div.CommentControl ul.error_list').size() == 0) { 
      $('commentForm').hide();
    }
    $$('a[name=commentControl]').each(wlcp.Comments.attachOnclick);
  },
  attachOnclick:function(o, i)
  {
    o.onclick = wlcp.Comments.onclick;
  },
  onclick:function()
  {
    Effect.toggle('commentForm', 'slide');
    return false;
  }
}


wlcp.Guestbook = {
  init:function()
  {
    if ($$('div.GuestbookControl ul.error_list').size() == 0) { 
      $('guestbookForm').hide();
    }
    $$('a[name=guestbookControl]').each(wlcp.Guestbook.attachOnclick);
  },
  attachOnclick:function(o, i)
  {
    o.onclick = wlcp.Guestbook.onclick;
  },
  onclick:function()
  {
    Effect.toggle('guestbookForm', 'slide');
    return false;
  }
}

//-->

