function shepopup() {
  var isNN, isIE, exitURL, scriptID, cookieVRFY;

  //set by user
  scriptID='joinlist';
  cookieVRFY=1;

//  AddExit('http://www.selfhealingexpressions.com/cgi-bin/go.cgi');

  //////////////////////////////////////////////
  /// (c) 2001 ASCRIPTS.COM // do not remove! //
  //////////////////////////////////////////////
 
  if (parseInt(navigator.appVersion) >= 4) {
    if (navigator.appName == "Netscape") {
      isNN = true;
    } else {
      isIE = true;
    }
  }

  if ( (cookieVRFY!=1) || (document.cookie.indexOf( scriptID+'PopupPRO=' )==-1) )   {
    window.onerror = errorIgnore;
    if (isNN) {
      document.captureEvents(Event.UNLOAD | Event.LOAD | Event.ERROR | Event.CLICK);
    }
    // MjM Feb.12 2004 - changed below from onunload to onload
    //window.onload=openExitWin;
    openExitWin('http://www.selfhealingexpressions.com/cgi-bin/go.cgi');
    if (cookieVRFY==1) {
      document.cookie=scriptID+'PopupPRO=HeyGuys!;path=/';
    }
  }  
}
  
//function AddExit(sURL) {
//  exitURL=sURL;
//}

function errorIgnore(e) { return true; }

function openExitWin(exitURL) {
  if (exitURL!='') {
    var ExitWin = window.open(exitURL,'sheExitWin','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=540,height=405,top=10, left=300'); // MjM 29 Apr 2004- Added left=300 so we don't cover s-he demo ad
    // self.focus(); // MjM Feb. 12 - Commented out so window doesn't pop-under
  }
  // MjM: Changed status=yes to no, menubar=yes to no, scrollbars=yes to no, resizable=yes to no, 420 to 540 and 400 to 405 above
  return true;
}
