<!--

//Script is pre-set to popunder only once, 
//The only thing you'll need to change is 
//the URL you want to pop open. The line that starts with: var popunder=

<!-- specify page to pop-under - it's recommended that you try and use this code as is for a simple test first. Just cut and paste into your page and try it. Or if you know exactly what you're doing, just replace with your URL, in between the quotation marks.-->

var popunder="http://www.connectionzone.com/welcome.asp?R=5636"

//Pop-under only once per browser session? (0=no, 1=yes)
<!-- Using "0" will cause popunder to load every time page is loaded. "1" will load it only once per browser session. -->
var once_per_session=0

///No editing beyond this point is required////

function get_cookie(Name) {
  var search = Name + "="
  var returnvalue = "";
  if (document.cookie.length > 0) {
    offset = document.cookie.indexOf(search)
    if (offset != -1) { // if cookie exists
      offset += search.length
      // set index of beginning of value
      end = document.cookie.indexOf(";", offset);
      // set index of end of cookie value
      if (end == -1)
         end = document.cookie.length;
      returnvalue=unescape(document.cookie.substring(offset, end))
      }
   }
  return returnvalue;
}

function loadornot(){
if (get_cookie('popunder')==''){
loadpopunder()
document.cookie="popunder=yes"
}
}

function loadpopunder(){
win2=window.open(popunder,"","width=760,height=400,resizable,status,menubar,scrollbars,toolbars,location")
win2.blur()
window.focus()
}

if (once_per_session==0)
loadpopunder()
else
loadornot()
// -->

<!--
/*
Fair well window launcher script
By Website Abstraction (http://wsabstract.com)
Over 200+ free scripts here!
*/

function openpopup(){
//configure "seeyou.htm and the window dimensions as desired
window.open("http://www.lovesites.com","","width=300,height=338")
}

function get_cookie(Name) {
  var search = Name + "="
  var returnvalue = "";
  if (document.cookie.length > 0) {
    offset = document.cookie.indexOf(search)
    if (offset != -1) { // if cookie exists
      offset += search.length
      // set index of beginning of value
      end = document.cookie.indexOf(";", offset);
      // set index of end of cookie value
      if (end == -1)
         end = document.cookie.length;
      returnvalue=unescape(document.cookie.substring(offset, end))
      }
   }
  return returnvalue;
}

function loadpopup(){
if (get_cookie('popped')==''){
openpopup()
document.cookie="popped=yes"
}
}

// -->
