// Put Page To Popup Here
  var popURL = "http://www.catalinacruz.com/t1/xit.html?";

// Put What To Show In New Window Title Bar
  var popTITLE = "";

// Edit New Popup Options 
  var popWindowOptions = "width=800,height=800,scrollbars=1,menubar=0,toolbar=0,location=0,personalbar=0,status=0,resizable=1,top=0,left=0";

// Edit param to NOT show popup (comma seperated with no spaces)
  var popNoShow = "revscf,cfree";
  
// ---- Do Not Edit Below Here ----

  function popup() {
    window.open(popURL,popTITLE,popWindowOptions);
    window.focus();
    return true;
  }

  function setOnLoad() {
    pathArray = window.location.pathname.split( '/' );
    revs = pathArray[2].split( '=' );
    noShow = popNoShow.split(',');
    show=true;
    for (i=0; i<noShow.length; i++) {
      if (revs[0] == noShow[i]) show=false;
    }
    if (show) {
      popURL += revs[1];
      var tags=document.getElementsByTagName('a');
      for (i=0; i<tags.length; i++) 
        tags[i].onclick=function() { popup(this); }
    }
  }

