This is the Javascript that creates the popup. If you want to put it on YOUR WEBSITE, copy and paste it into the body of your mainpage on your site, preferably at the bottom so your main page loads first

NOTE- the first < below before <script> is not actually the "less than".  It is &lt;  which prevents the script from actually running here.  DO NO FORGET to replace the &lt; with the actual <   Same thing for the </ at the bottom. If you forget to do this, the popup WILL NOT RUN.

<script>

//Popup Window Script
//By JavaScript Kit (http://javascriptkit.com)
//JavaScript tutorials and over 400+ free scripts

function openpopup(){
var popurl="http://familyrightsassociation.com/specials/hunted/index.html"
winpops=window.open(popurl,"","width=540,height=220,")
}

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('poppedup')==''){
openpopup()
document.cookie="poppedup=yes"
}
}

loadornot()
</script>