<!--
function setCookie() {
  var exp = new Date();
  exp.setTime(exp.getTime() + 999999999999);	
  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=342,height=455,resizable=no');
  popWin.blur();
  popWin.location='popupun.html';
  var shut=true;
}

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

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

//-->