// #include view.js

function init() {  
  if (!(document
	&& document.implementation
	&& document.implementation.hasFeature
	&& document.implementation.hasFeature("HTML", "1.0"))) {
    // no DOM support :-(
    return;
  }
  
  if (!document.getElementById) {
    return;
  }
  //  try {

  option("view");

  checkbox("closed");
  
  checkbox("categories");
  checkbox("type");
  checkbox("deadline");
  checkbox("action");
  checkbox("decision");
  
  checkbox("editorial");
  checkbox("clarification");
  checkbox("error");
  checkbox("proposal");

  checkbox("expert");

  checkbox("stateAgreed");
  checkbox("stateDeclined");
  checkbox("stateSubsumed");
  checkbox("stateNoDecision");

  checkbox("ackAgreed");
  checkbox("ackReplyUnaddressed");
  checkbox("ackNoReply");


  //  } catch (e) { alert(e); }
}
