

<script type="text/javascript">
  // Function for set the cookie for days
  function tekGdprSetCookie(cname, cvalue, exdays) { //create js cookie
    var d = new Date();
    d.setTime(d.getTime() + (exdays * 24 * 60 * 60 * 1000));
    var expires = "expires=" + d.toUTCString();
    document.cookie = cname + "=" + cvalue + ";" + expires + ";path=/";
  }
  function sendTheDatatandc()
  {
	var formId = document.getElementById('TandC_Data');
	if(document.querySelector('#t-and-c--checkbox:checked')!==null) {
    	var set = 2;
    	var postData = $('#TandC_Data').serialize()+'&gdpraccepttandc=submit';
    	var xhttp = new XMLHttpRequest();
    	xhttp.onreadystatechange = function() {
    	  if (this.readyState == 4 && this.status == 200) {
    	    set = this.responseText;
    	  }
    	};
    	xhttp.open("POST", "https://prophecyforum.com/bible-prophecy/mods/wpgdpr_g8zuDP/update.php", true);
    	xhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
    	xhttp.send(postData);
		tekGdprSetCookie('WP-GDPR-Compliance-tandc','1.0',3650);

		window.location='https://prophecyforum.com/bible-prophecy';	}
	else {
		alert("Please check the checkbox");
	}
  }
  // Hit the file update.php to work it without refresh with XMLHttp
  function gdrpSetCookie(name, cookieName) { //ajax and js cookie function call
    var set = 2;
    var xhttp = new XMLHttpRequest();
    xhttp.onreadystatechange = function() {
      if (this.readyState == 4 && this.status == 200) {
        set = this.responseText;
      }
    };

    xhttp.open("POST", "https://prophecyforum.com/bible-prophecy/mods/wpgdpr_g8zuDP/update.php", true);
    xhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
    xhttp.send(name);
  }

  // Function to check the cookie exist or not
  function getGdprCookieCookie(name) {
    var value = "; " + document.cookie;
    var parts = value.split("; " + name + "=");
    if (parts.length == 2) {
      return parts.pop().split(";").shift();
    } else {
      return null;
    }
  }
 // get cookie value
  function getCookie(cname) {
  let name = cname + "=";
  let decodedCookie = decodeURIComponent(document.cookie);
  let ca = decodedCookie.split(';');
  for(let i = 0; i <ca.length; i++) {
    let c = ca[i];
    while (c.charAt(0) == ' ') {
      c = c.substring(1);
    }
    if (c.indexOf(name) == 0) {
      return c.substring(name.length, c.length);
    }
  }
  return "";
}

</script>

	<script type="text/javascript">
  // Function for set the cookie for days
  function tekGdprSetCookie(cname, cvalue, exdays) { //create js cookie
    var d = new Date();
    d.setTime(d.getTime() + (exdays * 24 * 60 * 60 * 1000));
    var expires = "expires=" + d.toUTCString();
    document.cookie = cname + "=" + cvalue + ";" + expires + ";path=/";
  }
  function sendTheDatapp()
  {
	var formId = document.getElementById('privacyPolicyData');
	if(document.querySelector('#provicy-policy--checkbox:checked')!==null) {
		var set = 2;
		var postData = $('#privacyPolicyData').serialize()+'&gdpracceptpp=submit';
		var xhttp = new XMLHttpRequest();
		xhttp.onreadystatechange = function() {
			if (this.readyState == 4 && this.status == 200) {
				set = this.responseText;
			}
    	};
    	xhttp.open("POST", "https://prophecyforum.com/bible-prophecy/mods/wpgdpr_g8zuDP/update.php", true);
    	xhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
    	xhttp.send(postData);
		tekGdprSetCookie('WP-GDPR-Compliance-pp','1.0',3650);

		window.location='https://prophecyforum.com/bible-prophecy';	}
	else {
		alert("Please check the checkbox");
	}
  }
  // Hit the file update.php to work it without refresh with XMLHttp
  function gdrpSetCookie(name, cookieName) { //ajax and js cookie function call
    var set = 2;
    var xhttp = new XMLHttpRequest();
    xhttp.onreadystatechange = function() {
      if (this.readyState == 4 && this.status == 200) {
        set = this.responseText;
      }
    };
    // var postdata = 
    xhttp.open("POST", "https://prophecyforum.com/bible-prophecy/mods/wpgdpr_g8zuDP/update.php", true);
    xhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
    xhttp.send(name);
  }

  // Function to check the cookie exist or not
  function getGdprCookieCookie(name) {
    var value = "; " + document.cookie;
    var parts = value.split("; " + name + "=");
    if (parts.length == 2) {
      return parts.pop().split(";").shift();
    } else {
      return null;
    }
  }
 // get cookie value
  function getCookie(cname) {
  let name = cname + "=";
  let decodedCookie = decodeURIComponent(document.cookie);
  let ca = decodedCookie.split(';');
  for(let i = 0; i <ca.length; i++) {
    let c = ca[i];
    while (c.charAt(0) == ' ') {
      c = c.substring(1);
    }
    if (c.indexOf(name) == 0) {
      return c.substring(name.length, c.length);
    }
  }
  return "";
}

</script>
<style>
/* Customize the label (the containerr) */
.containerr {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;

    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }

  /* Hide the browser's default checkbox */
  .containerr input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
  }

  /* Create a custom checkbox */
  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
  }

  /* On mouse-over, add a grey background color */
  .containerr:hover input~.checkmark {
    background-color: #ccc;
  }

  /* When the checkbox is checked, add a blue background */
  .containerr input:checked~.checkmark {
    background-color: #2196F3;
  }

  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }

  /* Show the checkmark when checked */
  .containerr input:checked~.checkmark:after {
    display: block;
  }

  /* Style the checkmark/indicator */
  .containerr .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  /*Row arrangement for status */
  .checkbx {
    width: 5%;
    padding-left: 0;
  }

  .yesbadge {
    padding: 10px;
    border: 0px;
    background-color: #38B677;
    margin: 5px;
    margin-top: 1px;
    border-radius: 2px;
  }

  .yesicons {
    font-size: 18px;
    border-radius: 100%;
    color: #fff;
  }

  .noicons {
    font-size: 18px;
    border-radius: 100%;
    color: #fff;
  }

  .nobadge {
    padding: 10px;
    border: 0px;
    background-color: #FE5253;
    margin: 5px;
    margin-top: 1px;
    border-radius: 2px;
  }

  .statusnobadge {
    padding: 10px;
    border: 0px;
    background-color: #e4dddd;
    margin: 5px;
    margin-top: 1px;
    border-radius: 2px;
  }

  .statusyesbadge {
    padding: 10px;
    border: 0px;
    background-color: #e4dddd;
    margin: 5px;
    margin-top: 1px;
    border-radius: 2px;
  }

  .textblock {
    padding: 10px;
    padding-right: 0px;
    background-color: #FBFBFB;
    border: 1px solid #E6E6E6;
  }

  .statusnoicons {
    font-size: 18px;
    border-radius: 100%;
    color: red;
  }

  .statusyesicons {
    font-size: 18px;
    border-radius: 100%;
    color: #38B677;
  }

  .statusnotextblock {
    padding: 10px;
    padding-right: 0px;
    color: red;
    font-weight: 700;
  }

  .statusyestextblock {
    padding: 10px;
    padding-right: 0px;
    color: #38B677;
    font-weight: 700;
  }
/* CSS */
.button-13 {
  background-color: #fff;
  border: 1px solid #d5d9d9;
  border-radius: 8px;
  box-shadow: rgba(213, 217, 217, .5) 0 2px 5px 0;
  box-sizing: border-box;
  color: #0f1111;
  cursor: pointer;
  display: inline-block;
  font-family: "Amazon Ember",sans-serif;
  font-size: 13px;
  line-height: 29px;
  padding: 0 10px 0 11px;
  position: relative;
  text-align: center;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
  width: 100px;
}

.button-13:hover {
  background-color: #f7fafa;
}

.button-13:focus {
  border-color: #008296;
  box-shadow: rgba(213, 217, 217, .5) 0 2px 5px 0;
  outline: 0;
}
</style>
<script type="text/javascript">
	function gdprdrAction() {
		var cnfmsgdrect = "Are you sure you want to delete this";
		var conf = confirm(cnfmsgdrect);
		if (conf == true) {
			return true;
		} else {
			return false;
		}
	}
</script>
{"id":844,"date":"2018-06-11T01:20:17","date_gmt":"2018-06-11T06:20:17","guid":{"rendered":"http:\/\/prophecyforum.com\/bible-prophecy\/?page_id=844"},"modified":"2018-06-11T01:26:19","modified_gmt":"2018-06-11T06:26:19","slug":"privacy-policy","status":"publish","type":"page","link":"https:\/\/prophecyforum.com\/bible-prophecy\/privacy-policy\/","title":{"rendered":"Privacy Policy"},"content":{"rendered":"<p>This privacy policy sets out how Prophecy Forum Ministries uses and protects any information that you give Prophecy Forum Ministries when you use this website.<br \/>\nProphecy Forum Ministries is committed to ensuring that your privacy is protected. Should we ask you to provide certain information by which you can be identified when using this website, then you can be assured that it will only be used in accordance with this privacy statement.<br \/>\nProphecy Forum Ministries may change this policy from time to time by updating this page. You should check this page from time to time to ensure that you are happy with any changes. This policy is effective from Jun 11, 2018<\/p>\n<h2>What we collect<\/h2>\n<p>We may collect the following information:<\/p>\n<ul>\n<li>name and job title<\/li>\n<li>contact information including email address<\/li>\n<li>demographic information such as postcode, preferences and interests<\/li>\n<li>other information relevant to customer surveys and\/or offers<\/li>\n<\/ul>\n<h2>What we do with the information we gather<\/h2>\n<p>We require this information to understand your needs and provide you with a better service, and in particular for the following reasons:<\/p>\n<ul>\n<li>Internal record keeping.<\/li>\n<li>We may use the information to improve our products and services.<\/li>\n<li>We may periodically send promotional emails about new products, special offers or other information which we think you may find interesting using the email address which you have provided.<\/li>\n<li>From time to time, we may also use your information to contact you for market research purposes. We may contact you by email, phone, fax or mail. We may use the information to customise the website according to your interests.<\/li>\n<\/ul>\n<h2>Security<\/h2>\n<p>We are committed to ensuring that your information is secure. In order to prevent unauthorised access or disclosure, we have put in place suitable physical, electronic and managerial procedures to safeguard and secure the information we collect online.<\/p>\n<h2>How we use cookies<\/h2>\n<p>A cookie is a small file which asks permission to be placed on your computer&#8217;s hard drive. Once you agree, the file is added and the cookie helps analyse web traffic or lets you know when you visit a particular site. Cookies allow web applications to respond to you as an individual. The web application can tailor its operations to your needs, likes and dislikes by gathering and remembering information about your preferences.<\/p>\n<p>We use traffic log cookies to identify which pages are being used. This helps us analyse data about web page traffic and improve our website in order to tailor it to customer needs. We only use this information for statistical analysis purposes and then the data is removed from the system.<br \/>\nOverall, cookies help us provide you with a better website, by enabling us to monitor which pages you find useful and which you do not. A cookie in no way gives us access to your computer or any information about you, other than the data you choose to share with us.<\/p>\n<p>You can choose to accept or decline cookies. Most web browsers automatically accept cookies, but you can usually modify your browser setting to decline cookies if you prefer. This may prevent you from taking full advantage of the website.<\/p>\n<h2>Links to other websites<\/h2>\n<p>Our website may contain links to other websites of interest. However, once you have used these links to leave our site, you should note that we do not have any control over that other website. Therefore, we cannot be responsible for the protection and privacy of any information which you provide whilst visiting such sites and such sites are not governed by this privacy statement. You should exercise caution and look at the privacy statement applicable to the website in question.<\/p>\n<h2>Controlling your personal information<\/h2>\n<p>You may choose to restrict the collection or use of your personal information in the following ways:<\/p>\n<ul>\n<li>whenever you are asked to fill in a form on the website, look for the box that you can click to indicate that you do not want the information to be used by anybody for direct marketing purposes<\/li>\n<li>if you have previously agreed to us using your personal information for direct marketing purposes, you may change your mind at any time by writing to or emailing us at admin@prophecyforum.com<\/li>\n<\/ul>\n<p>We will not sell, distribute or lease your personal information to third parties unless we have your permission or are required by law to do so. We may use your personal information to send you promotional information about third parties which we think you may find interesting if you tell us that you wish this to happen.<\/p>\n<p>You may request details of personal information which we hold about you under the Data Protection Act 1998. A small fee will be payable. If you would like a copy of the information held on you please write to Larry Cockerham , 4505 N Greensburg Rd<br \/>\nIf you believe that any information we are holding on you is incorrect or incomplete, please write to or email us as soon as possible, at the above address. We will promptly correct any information found to be incorrect.<\/p>\n<p><b><p id='hide-privacy-policyb'>\n\t\t<div>\n\t\t\t<form id='privacyPolicyData' action='' method='post'><input type='hidden' value='1' name='gdprnlgpp'>\n\t\t\t\t<label class='containerr accept_container'>\n\t\t\t\t\tI have reviewed the Privacy Policy and I give my consent to the terms laid out.\n\t\t\t\t<input type='checkbox' id='provicy-policy--checkbox' required>\n\t\t\t\t<span class='checkmark'><\/span><\/label>\n\t\t\t\t<input type='button' class='gdpracceptbutton button-13'  value='Accept It' name='gdpracceptpp' onclick='sendTheDatapp()'>\n\t\t\t<\/form>\n\t\t<\/div>\n\t\t<\/p>\n\t\t<\/b><\/p>\n","protected":false},"excerpt":{"rendered":"<p>This privacy policy sets out how Prophecy Forum Ministries uses and protects any information that you give Prophecy Forum Ministries when you use this website. Prophecy Forum Ministries is committed to ensuring that your privacy is protected. Should we ask you to provide certain information by which you can be identified when using this website,&hellip;<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_s2mail":"","jetpack_post_was_ever_published":false,"iawp_total_views":25,"footnotes":""},"class_list":["post-844","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Privacy Policy<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/prophecyforum.com\/bible-prophecy\/privacy-policy\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Privacy Policy\" \/>\n<meta property=\"og:description\" content=\"This privacy policy sets out how Prophecy Forum Ministries uses and protects any information that you give Prophecy Forum Ministries when you use this website. Prophecy Forum Ministries is committed to ensuring that your privacy is protected. Should we ask you to provide certain information by which you can be identified when using this website,&hellip;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/prophecyforum.com\/bible-prophecy\/privacy-policy\/\" \/>\n<meta property=\"og:site_name\" content=\"Prophecy Forum\" \/>\n<meta property=\"article:modified_time\" content=\"2018-06-11T06:26:19+00:00\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/prophecyforum.com\\\/bible-prophecy\\\/privacy-policy\\\/\",\"url\":\"https:\\\/\\\/prophecyforum.com\\\/bible-prophecy\\\/privacy-policy\\\/\",\"name\":\"Privacy Policy\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/prophecyforum.com\\\/bible-prophecy\\\/#website\"},\"datePublished\":\"2018-06-11T06:20:17+00:00\",\"dateModified\":\"2018-06-11T06:26:19+00:00\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/prophecyforum.com\\\/bible-prophecy\\\/privacy-policy\\\/\"]}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/prophecyforum.com\\\/bible-prophecy\\\/#website\",\"url\":\"https:\\\/\\\/prophecyforum.com\\\/bible-prophecy\\\/\",\"name\":\"Prophecy Forum\",\"description\":\"Bible prophecy and current events from a biblical perspective.\",\"publisher\":{\"@id\":\"https:\\\/\\\/prophecyforum.com\\\/bible-prophecy\\\/#\\\/schema\\\/person\\\/47f3ad622aac024723558ad57071bfd3\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/prophecyforum.com\\\/bible-prophecy\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/prophecyforum.com\\\/bible-prophecy\\\/#\\\/schema\\\/person\\\/47f3ad622aac024723558ad57071bfd3\",\"name\":\"nexxus\",\"logo\":{\"@id\":\"https:\\\/\\\/prophecyforum.com\\\/bible-prophecy\\\/#\\\/schema\\\/person\\\/image\\\/\"},\"description\":\"Rev. Larry W. Cockerham is best known for his prophetical teaching ministry based on the inspiration and authority of the Bible. The foundation of his ministry is helping others understand the Scriptures as they relate to the \\\"blessed hope\\\" (Tit. 2:13). Bro. Larry graduated from Andersonville Baptist Seminary with a Master of Theology degree. He has been teaching and preaching Bible prophecy, typology and related studies in churches for over forty-one years. He has written one book: Revelation: Prophetic Addresses to the Seven Churches, Vol. 1, The Rapture, and Ten Major Signs of the Lord's Return in Our Generation. He has listed over 40 books on Amazon, including novels, puzzle books, coloring books and other items. Larry is also listed in the Who's Who in Bible Prophecy and Top 100 End-Times Prophecy Teachers.\",\"sameAs\":[\"http:\\\/\\\/www.prophecyforum.com\",\"https:\\\/\\\/x.com\\\/larrywcockerham\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Privacy Policy","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/prophecyforum.com\/bible-prophecy\/privacy-policy\/","og_locale":"en_US","og_type":"article","og_title":"Privacy Policy","og_description":"This privacy policy sets out how Prophecy Forum Ministries uses and protects any information that you give Prophecy Forum Ministries when you use this website. Prophecy Forum Ministries is committed to ensuring that your privacy is protected. Should we ask you to provide certain information by which you can be identified when using this website,&hellip;","og_url":"https:\/\/prophecyforum.com\/bible-prophecy\/privacy-policy\/","og_site_name":"Prophecy Forum","article_modified_time":"2018-06-11T06:26:19+00:00","twitter_misc":{"Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/prophecyforum.com\/bible-prophecy\/privacy-policy\/","url":"https:\/\/prophecyforum.com\/bible-prophecy\/privacy-policy\/","name":"Privacy Policy","isPartOf":{"@id":"https:\/\/prophecyforum.com\/bible-prophecy\/#website"},"datePublished":"2018-06-11T06:20:17+00:00","dateModified":"2018-06-11T06:26:19+00:00","inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/prophecyforum.com\/bible-prophecy\/privacy-policy\/"]}]},{"@type":"WebSite","@id":"https:\/\/prophecyforum.com\/bible-prophecy\/#website","url":"https:\/\/prophecyforum.com\/bible-prophecy\/","name":"Prophecy Forum","description":"Bible prophecy and current events from a biblical perspective.","publisher":{"@id":"https:\/\/prophecyforum.com\/bible-prophecy\/#\/schema\/person\/47f3ad622aac024723558ad57071bfd3"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/prophecyforum.com\/bible-prophecy\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/prophecyforum.com\/bible-prophecy\/#\/schema\/person\/47f3ad622aac024723558ad57071bfd3","name":"nexxus","logo":{"@id":"https:\/\/prophecyforum.com\/bible-prophecy\/#\/schema\/person\/image\/"},"description":"Rev. Larry W. Cockerham is best known for his prophetical teaching ministry based on the inspiration and authority of the Bible. The foundation of his ministry is helping others understand the Scriptures as they relate to the \"blessed hope\" (Tit. 2:13). Bro. Larry graduated from Andersonville Baptist Seminary with a Master of Theology degree. He has been teaching and preaching Bible prophecy, typology and related studies in churches for over forty-one years. He has written one book: Revelation: Prophetic Addresses to the Seven Churches, Vol. 1, The Rapture, and Ten Major Signs of the Lord's Return in Our Generation. He has listed over 40 books on Amazon, including novels, puzzle books, coloring books and other items. Larry is also listed in the Who's Who in Bible Prophecy and Top 100 End-Times Prophecy Teachers.","sameAs":["http:\/\/www.prophecyforum.com","https:\/\/x.com\/larrywcockerham"]}]}},"jetpack_sharing_enabled":true,"jetpack_likes_enabled":true,"jetpack-related-posts":[{"id":845,"url":"https:\/\/prophecyforum.com\/bible-prophecy\/terms-of-service\/","url_meta":{"origin":844,"position":0},"title":"Terms of Service","author":"nexxus","date":"June 11, 2018","format":false,"excerpt":"Welcome to Prophecy Forum. If you continue to browse and use this website, you are agreeing to comply with and be bound by the following terms and conditions of use, which together with our privacy policy govern Prophecy Forum Ministries's relationship with you in relation to this website. If you\u2026","rel":"","context":"Similar post","block_context":{"text":"Similar post","link":""},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":846,"url":"https:\/\/prophecyforum.com\/bible-prophecy\/copyright\/","url_meta":{"origin":844,"position":1},"title":"Copyright","author":"nexxus","date":"June 11, 2018","format":false,"excerpt":"Copyright This website \"www.prophecyforum.com\" and its content is copyright of Prophecy Forum Ministries - \u00a9 Prophecy Forum Ministries 2018. All rights reserved. Any redistribution or reproduction of part or all of the contents in any form is prohibited other than the following: You may print or download to a local\u2026","rel":"","context":"Similar post","block_context":{"text":"Similar post","link":""},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":1500,"url":"https:\/\/prophecyforum.com\/bible-prophecy\/anti-spam-policy\/","url_meta":{"origin":844,"position":2},"title":"Anti-Spam Policy","author":"nexxus","date":"March 6, 2022","format":false,"excerpt":"The following describes the Anti-Spam Policy for our Prophecy Forum website. What Is Spam? Spam is unsolicited email, also known as junk mail (received via email), or UCE (Unsolicited Commercial Email). Virtually all of us have opened the inbox of an email account and found emails from an unknown sender.\u2026","rel":"","context":"Similar post","block_context":{"text":"Similar post","link":""},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":1508,"url":"https:\/\/prophecyforum.com\/bible-prophecy\/social-media-disclaimer\/","url_meta":{"origin":844,"position":3},"title":"Social Media Disclaimer","author":"nexxus","date":"March 6, 2022","format":false,"excerpt":"The following describes the Social Media Disclosure for our Prophecy Forum website. Social Media Issue We live in an interesting time when privacy rights are championed alongside an unprecedented voluntary willingness of people to share their most intimate and superfluous life details with the world, even in places such as\u2026","rel":"","context":"Similar post","block_context":{"text":"Similar post","link":""},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":1504,"url":"https:\/\/prophecyforum.com\/bible-prophecy\/earnings-disclaimer\/","url_meta":{"origin":844,"position":4},"title":"Earnings Disclaimer","author":"nexxus","date":"March 6, 2022","format":false,"excerpt":"The following describes the Earnings Disclaimer for our Prophecy Forum website. We make every effort to ensure that we accurately represent these products and services and their potential for income. Earning and Income statements made by Prophecy Forum and its customers are estimates of what we think you can possibly\u2026","rel":"","context":"Similar post","block_context":{"text":"Similar post","link":""},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":1502,"url":"https:\/\/prophecyforum.com\/bible-prophecy\/dmca-compliance\/","url_meta":{"origin":844,"position":5},"title":"DMCA Compliance","author":"nexxus","date":"March 6, 2022","format":false,"excerpt":"The following describes the DMCA Compliance for our Prophecy Forum website. We at Prophecy Forum are committed to responding to any alleged copyright violations, should they occur. Notice of any alleged violation should take the form proposed by the U.S. Digital Millennium Copyright Act as revealed at http:\/\/www.copyright.gov. Remedy If\u2026","rel":"","context":"Similar post","block_context":{"text":"Similar post","link":""},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]}],"_links":{"self":[{"href":"https:\/\/prophecyforum.com\/bible-prophecy\/wp-json\/wp\/v2\/pages\/844","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/prophecyforum.com\/bible-prophecy\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/prophecyforum.com\/bible-prophecy\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/prophecyforum.com\/bible-prophecy\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/prophecyforum.com\/bible-prophecy\/wp-json\/wp\/v2\/comments?post=844"}],"version-history":[{"count":0,"href":"https:\/\/prophecyforum.com\/bible-prophecy\/wp-json\/wp\/v2\/pages\/844\/revisions"}],"wp:attachment":[{"href":"https:\/\/prophecyforum.com\/bible-prophecy\/wp-json\/wp\/v2\/media?parent=844"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}