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,"",winfeatures)
  win2.blur()
  window.focus()
}


function check_email(email) {
  if (email == "" || email == your_email_txt) {
    alert(check_email_txt);
    return false;
  }
  return true;
}

function finale_email(id) {
  email = prompt(movie_ending_email_txt, '');
  if (email) {
    //self.location = '".$PHP_SELF."/send/'+id+'/email/'+email;
    self.location = '/moviend/send/'+id+'/'+email;
  }
}

function startAD() {
}

function closeAD() {
}

// framebreaker
if (self != top) top.location.href = self.location.href;

