window.onload = function () {

  var as = document.getElementsByTagName("a");
  for (i=0; i<as.length; i++) {
    if (as[i].className.indexOf("lightwindow") != -1) {
      as[i].setAttribute("params","lightwindow_width=965");
    }
    if (as[i].className.indexOf("expand") != -1) {
      as[i].onclick = function() {
        var note_container = document.getElementById("note_container").getElementsByTagName("div")[0];
        if (note_container.style.display == "none") Effect.BlindDown(note_container);
	return false;
      }
    }
  }

}
