
<!--
var siteName = new Array();
  // insert the first part of the address below
  siteName[0]="http:"+'//'+"allfamilyone.com/GuestBook/addentry.php";
  siteName[1]="http:"+'//'+"allfamilyone.com/familygallery";
  siteName[2]="http:"+'//'+"utracooldude.com";
  siteName[3]="http:"+'//'+"allfamilyone.com/Bloglog/index.php?topic=FamilyAncestry";
  siteName[4]="http:"+'//'+"allfamilyone.com/Bloglog/index.php?topic=FamilyObits";
  siteName[5]="http:"+'//'+"allfamilyone.com/Bloglog/index.php?topic=FamilyNews";
  siteName[6]="marketdir";
  siteName[7]="support";
  siteName[8]="webmaster";
// var cookie = "subscription pop";            
var cookie = new Array();
  // Insert the name associated with the address
  cookie[0]="guestbook pop";
  cookie[1]="photo pop";
  cookie[2]="test pop";
  cookie[3]="famancestry pop";
  cookie[4]="famobits pop";
  cookie[5]="famnews pop";
  cookie[6]="Marketing Directory";
  cookie[7]="Success Curve Tech Support";
  cookie[8]="Contact Us";
function popup(i){
if (getcookie(cookie[i])==""){
openpopup(i);
setcookie(i);
}
}
function openpopup(i) {
window.open(siteName[i],"","toolbar=No,menubar=No,location=No,scrollbars=Yes,resizable=Yes,status=Yes,width=900,height=800,left=50,top=20");
}function getcookie(cookieName) {
var id = cookieName + "=";
var cookievalue = "";
if (document.cookie.length > 0) {
offset = document.cookie.indexOf(id);
if (offset != -1) {
cookievalue = "x";
}
}
return cookievalue;
}
function setcookie (i) {
document.cookie = cookie[i]
+ "="
+ escape ("done");}
//-->

