<!--

function resizeFadeDiv() {
   var fadeDiv = document.getElementById("fadeDiv");
   //check dimensions of window
   var w = 0;
   var h = 0;
   //ff
   if (window.innerWidth) {
      w = window.innerWidth;
      h = window.innerHeight;
   }
   //ie6
   else if (document.documentElement && document.documentElement.clientWidth && document.documentElement.clientHeight) {
      w = document.documentElement.clientWidth;
      h = document.documentElement.clientHeight;
   }
   //ie6 quirks
   else if (document.body && document.body.clientWidth && document.body.clientHeight) {
      w = document.body.clientWidth;
      h = document.body.clientHeight;
   }
   else {
      w = 0;
      h = 0;
   }
   //now check dimensions of document to see which is larger
   var w2 = 0;
   var h2 = 0;
   //ie6
   if (document.documentElement && document.documentElement.scrollWidth && document.documentElement.scrollHeight) {
      w2 = document.documentElement.scrollWidth;
      h2 = document.documentElement.scrollHeight;
   }
   //ie6 quirks
   else if (document.body && document.body.scrollWidth && document.body.scrollHeight) {
      w2 = document.body.scrollWidth;
      h2 = document.body.scrollHeight;
   }
   //ff
   else if (document.body && document.body.clientWidth && document.body.clientHeight) {
      w2 = document.body.clientWidth;
      h2 = document.body.clientHeight;
   }
   else {
      w2 = 0;
      h2 = 0;
   }
   fadeDiv.style.height = ((h > h2) ? h : h2) + "px";
   fadeDiv.style.width = ((w > w2) ? w : w2) + "px";
}

function backstory() {
   var fadeDiv = document.getElementById("fadeDiv");
   fadeDiv.style.display = "block";
   var answer = confirm("The Honeysting Spoiler Alert: Do you want to continue?");
   if (answer)
   window.location="backstory.html"
   else
   fadeDiv.style.display = "none";
}

function sambio() {
   var fadeDiv = document.getElementById("fadeDiv");
   fadeDiv.style.display = "block";
   var answer = confirm("The Honeysting Spoiler Alert: Do you want to continue?");
   if (answer)
   window.location="samjojolabio.html"
   else
   fadeDiv.style.display = "none";
}

function simonbio() {
   var fadeDiv = document.getElementById("fadeDiv");
   fadeDiv.style.display = "block";
   var answer = confirm("The Honeysting Spoiler Alert: Do you want to continue?");
   if (answer)
   window.location="simonrheebio.html"
   else
   fadeDiv.style.display = "none";
}

function mariebio() {
   var fadeDiv = document.getElementById("fadeDiv");
   fadeDiv.style.display = "block";
   var answer = confirm("The Honeysting Spoiler Alert: Do you want to continue?");
   if (answer)
   window.location="mariepalladinibio.html"
   else
   fadeDiv.style.display = "none";
}

function bornFree() {
   var fadeDiv = document.getElementById("fadeDiv");
   fadeDiv.style.display = "block";
   var answer = confirm("The Honeysting Spoiler Alert: Do you want to continue?");
   if (answer)
   window.location="bornfree.html"
   else
   fadeDiv.style.display = "none";
}

function dirnote() {
   var fadeDiv = document.getElementById("fadeDiv");
   fadeDiv.style.display = "block";
   var answer = confirm("The Honeysting Spoiler Alert: Do you want to continue?");
   if (answer)
   window.location="dirnote.html"
   else
   fadeDiv.style.display = "none";
}

function prodnote() {
   var fadeDiv = document.getElementById("fadeDiv");
   fadeDiv.style.display = "block";
   var answer = confirm("The Honeysting Spoiler Alert: Do you want to continue?");
   if (answer)
   window.location="prodnotes.html"
   else
   fadeDiv.style.display = "none";
}

function whois() {
   var fadeDiv = document.getElementById("fadeDiv");
   fadeDiv.style.display = "block";
   var answer = confirm("The Honeysting Spoiler Alert: Do you want to continue?");
   if (answer)
   window.location="whois.html"
   else
   fadeDiv.style.display = "none";
}

function markqa() {
   var fadeDiv = document.getElementById("fadeDiv");
   fadeDiv.style.display = "block";
   var answer = confirm("The Honeysting Spoiler Alert: Do you want to continue?");
   if (answer)
   window.location="markqa.html"
   else
   fadeDiv.style.display = "none";
}

function simonqa() {
   var fadeDiv = document.getElementById("fadeDiv");
   fadeDiv.style.display = "block";
   var answer = confirm("The Honeysting Spoiler Alert: Do you want to continue?");
   if (answer)
   window.location="simonqa.html"
   else
   fadeDiv.style.display = "none";
}

function makingof() {
   var fadeDiv = document.getElementById("fadeDiv");
   fadeDiv.style.display = "block";
   var answer = confirm("The Honeysting Spoiler Alert: Do you want to continue?");
   if (answer)
   window.location="epk.html"
   else
   fadeDiv.style.display = "none";
}

function hsus() {
   var fadeDiv = document.getElementById("fadeDiv");
   fadeDiv.style.display = "block";
   var answer = confirm("The Honeysting Spoiler Alert: Do you want to continue?");
   if (answer)
   window.location="humanesociety.html"
   else
   fadeDiv.style.display = "none";
}

function bornfree() {
   var fadeDiv = document.getElementById("fadeDiv");
   fadeDiv.style.display = "block";
   var answer = confirm("The Honeysting Spoiler Alert: Do you want to continue?");
   if (answer)
   window.location="bornfree.html"
   else
   fadeDiv.style.display = "none";
}

function samqa() {
   var fadeDiv = document.getElementById("fadeDiv");
   fadeDiv.style.display = "block";
   var answer = confirm("The Honeysting Spoiler Alert: Do you want to continue?");
   if (answer)
   window.location="samjojolaqa.html"
   else
   fadeDiv.style.display = "none";
}

window.onload = resizeFadeDiv;
window.onresize = resizeFadeDiv;

-->

