
function setCookie() {
  var exp = new Date();
  exp.setTime(exp.getTime() + 5000);
  document.cookie = "show_popup=false; path=/; expires=" + exp.toGMTString();
}

function detectCookie() {
  if(document.cookie.length > 0) {
    var cookiebegin=document.cookie.indexOf("show_popup=");
    if(cookiebegin >= 0) {
      return true;
    }
  }
  return false;
}

function showPopUp() {
  popWin = open('','_blank','width=250,height=480,resizable=yes');
  popWin.blur();
  popWin.location='http://www.investorwords.com/iwtodpopjeeves.html';
  var shut=true;
}

if (detectCookie() == false) {
  showPopUp();
  setCookie();
}

// Remove the "//" from the next line to have the pop-under always show
// showPopUp();



<!-- 
  
 -->