// JavaScript Document

//Pop-under window- By JavaScript Kit
//Credit notice must stay intact for use
//Visit http://javascriptkit.com for this script

//specify page to pop-under
var popunder="http://organizeyourselfonline.com/popunder.php";

//specify popunder window features
//set 1 to enable a particular feature, 0 to disable
var winfeatures="width=720,height=300,scrollbars=0,resizable=0,toolbar=0,location=0,menubar=0,status=0,directories=0";



///No editing beyond here 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 loadpopunder(){
lasturl=encodeURIComponent(window.location.href);
win2=window.open(popunder+"?last_url="+lasturl,"",winfeatures);
if(win2 != null){
	win2.blur();
}
window.focus();
}

function loadornot(){
	//alert('da');
if (get_cookie('popunder')==''){
loadpopunder();
document.cookie="popunder=yes";
}
}

