/* This script and many more are available free online at
The JavaScript Source!! http://javascript.internet.com
Created by: Katherine Nolan | http://www.outfront.net/ */

var allowedreferrer = "http://www.christianpeople.info/contact.html";
  if (document.referrer.indexOf(allowedreferrer) == -1) {
    alert("You can only access this page from " + allowedreferrer);
    window.location=allowedreferrer;
}
