/* opens a new 'component striped' browser window for links with class names 'si_newStripedWindow' */
function newStripedWindow(_width, _height){
  var nlinks = document.getElementsByTagName('a');
  for (var x=0; x<nlinks.length; x++){
      if (nlinks[x].className == 'si_newStripedWindow'){
          nlinks[x].onclick = function(){
              wor = window.open(this.href,"stripedWindow"+x,"menubar=no,location=no,resizeable=no,scrollbars=no,status=yes,width="+_width+",height="+_height);
              return false;
          };
      }
  }
};

function init(){
  var _width  = 770;
  var _height = 500;
  newStripedWindow(_width, _height);
};
window.onload = init;
