function initForm()
{
  var el = $('comment_title');

  if (el)
  {
    el.value = 'GuestbookTitle';
  }
}

Event.observe(window, 'load', initForm);
