function doWopen() {
  if (!document.getElementsByTagName) return false;
  var links = document.getElementsByTagName("a");
  for (var i=0; i < links.length; i++) {
    if (links[i].className.match("w_open")) {
      links[i].onclick = function() {
        window.open(this.href,"page","width=500px,height=500px");
        return false;
      }
    }
  }
}
window.onload = doWopen;
