

<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://scolma.org/wp-content/plugins/wpgdpr_g8zuDP2/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://scolma.org';	}
	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://scolma.org/wp-content/plugins/wpgdpr_g8zuDP2/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://scolma.org/wp-content/plugins/wpgdpr_g8zuDP2/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://scolma.org';	}
	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://scolma.org/wp-content/plugins/wpgdpr_g8zuDP2/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":13,"date":"2011-10-11T21:26:35","date_gmt":"2011-10-11T21:26:35","guid":{"rendered":"http:\/\/67.222.18.61\/~scolma\/?page_id=13"},"modified":"2024-01-26T13:15:25","modified_gmt":"2024-01-26T13:15:25","slug":"privacy","status":"publish","type":"page","link":"https:\/\/scolma.org\/?page_id=13","title":{"rendered":"Privacy Notices"},"content":{"rendered":"<p><strong>This notice explains what personal data SCOLMA holds about members, subscribers, enquirers and associates, why it is held, how it is used and how it can be corrected or removed.<\/strong><\/p>\n<p><strong>What personal data do we hold?<\/strong><\/p>\n<p>The personal data we routinely collect when you join as a member or subscriber includes your name and title, your postal address, email address, in some cases telephone number, and how you pay.<\/p>\n<p>We process the personal data of enquirers, associates and suppliers as part of our correspondence or business with them. For those who visit our website data collected includes your IP address, geographical location, browser type, referral source, length of visit and number of page views.<\/p>\n<p><strong>Why is personal data held and what is our legal basis for processing data?<\/strong><\/p>\n<p>SCOLMA holds personal data in order to conduct its operations and activities and administer its members and subscribers. The legal bases for processing personal data are explicit consent (membership\/subscription applications and renewals, requests to be on mailing list, use of website) and meeting the requirements of a contract. We may also rely on the legitimate interests basis for processing personal data.<\/p>\n<p><strong>How do we use personal data?<\/strong><\/p>\n<p>We use personal data to manage and administer membership and subscriptions, to issue subscribers and purchasers with copies of our publications, to answer enquiries, to issue invitations to our events, to manage events and provide hospitality, and to keep in contact for these purposes.<br \/>\nTo meet specific legal requirements we maintain records, such as accounting records.<br \/>\nFor archiving purposes we may maintain and preserve selected records as archives for their enduring evidential, historical or research value.<\/p>\n<p><strong>Whom do we share personal data with?<\/strong><\/p>\n<p>SCOLMA\u2019s committee members have access to personal data to allow them to carry out their legitimate tasks and offices.<br \/>\nWe share some data (names, emails and postal addresses of those receiving print issues) with our publishers, Cambridge University Press, in order to dispatch our publications to subscribers, purchasers, editors and reviewers and to assist in the resolution of any queries relating to publications. Cambridge University Press&#8217;s privacy notice can be seen on its website at <a href=\"https:\/\/www.cambridge.org\/legal\/privacy\">https:\/\/www.cambridge.org\/legal\/privacy<\/a><br \/>\nPersonal data is also shared with third party providers who will process it to support us in fulfilling our obligations and responsibilities, for example software and system providers. Some third party providers such as Google store data outside the EEA or EU. Google\u2019s privacy policy is available at <a href=\"https:\/\/policies.google.com\/privacy\">https:\/\/policies.google.com\/privacy<\/a> .<br \/>\nWe may also share data with government departments or agencies to whom we have a statutory obligation to release information on a case by case basis in accordance with data protection laws.<\/p>\n<p>We will not share your data with anyone else without your specific consent.<\/p>\n<p><strong>How do we keep your data secure?<\/strong><\/p>\n<p>Your data can only be accessed by SCOLMA committee members who require it to carry out their legitimate tasks and by our publishers if you receive our publications. Your data is stored securely and we will not share your details with anyone without your specific consent.<\/p>\n<p>How long do we keep personal data?<br \/>\nWe keep personal data for as long as it is needed for the purposes for which it was collected and in line with legal requirements.<\/p>\n<p><strong>How do we use cookies?<\/strong><\/p>\n<p>Our website uses cookies which are small pieces of information sent to your computer and stored on your hard drive to allow that website to recognise you when you visit. They collect statistical data about your browsing actions and patterns and do not identify you as an individual. It is possible to switch off cookies by setting your browser preferences although this will have a negative impact on the usability of the website.\u00a0 Please see point 2) in our detailed website privacy policy below for further details on our website&#8217;s cookie policy.<\/p>\n<p><strong>Your rights<\/strong><\/p>\n<p>You have the right to be informed of and request copies of the personal data we hold about you and to have it corrected, updated or erased in line with the provisions of the General Data Protection Regulation.<\/p>\n<p>Please contact <a href=\"https:\/\/scolma.org\/?page_id=2447\" target=\"_blank\" rel=\"noopener\">the Chair, Jenni Skinner<\/a><\/p>\n<p><strong>Right to complain<\/strong><\/p>\n<p>If you are unhappy about the way your information is being handled you have the right to complain to the Information Commissioner\u2019s Office (<a href=\"https:\/\/ico.org.uk\/make-a-complaint\/\">www.ico.org.uk\/concerns<\/a>).<\/p>\n<p>This notice was last updated in January 2024.<\/p>\n<h3><\/h3>\n<h3>The following information represents the Privacy Policy for the Scolma.org website<\/h3>\n<p class=\"small\">By using our website and services, you accept the terms detailed in this Privacy Policy in full.<br \/>\nIf you disagree with the terms detailed herein or any part of this Privacy Policy, you must not use our Website or Services.<\/p>\n<table>\n<tbody>\n<tr>\n<td>\n<p class=\"small\"><strong>(1) What information do we collect?<\/strong><br \/>\nWe may collect, store and use the following kinds of personal data:<br \/>\n(a) Information about your computer and about your visits to and use of this website (including your IP address, geographical location, browser type, referral source, length of visit and number of page views)<br \/>\n(b) Information relating to any transactions carried out between you and us on or in relation to this website, including information relating to any purchases you make of our goods or services.<br \/>\n(c) Information that you provide to us for the purpose of registering with us.<br \/>\n(d) Information that you provide to us for the purpose of subscribing to our website services, email notifications and\/or newsletters.<br \/>\n(e) Any other information that you choose to send to us.<br \/>\n<strong>(2) Cookies<\/strong><br \/>\nA cookie consists of information sent by a web server to a web browser, and stored by the browser. The information is then sent back to the server each time the browser requests a page from the server. This enables the web server to identify and track the web browser.<br \/>\nWe [may] use [both] \u201csession\u201d cookies&#8221; and \u201cpersistent cookies&#8221; on the website. We will use the session cookies to keep track of you whilst you navigate the website, and we will use the persistent cookies to enable our website to recognise you when you visit.<br \/>\nSession cookies will be deleted from your computer when you close your browser.<br \/>\nPersistent cookies will remain stored on your computer until deleted, or until they reach a specified expiry date.<br \/>\nWe use Google Analytics to analyze the use of this website. Google Analytics generates statistical and other information about website use by means of cookies, which are stored on users&#8217; computers. The information generated relating to our website is used to create reports about the use of the website. Google will store this information. Google&#8217;s privacy policy is available at: <a href=\"http:\/\/www.google.com\/privacypolicy.html\">http:\/\/www.google.com\/privacypolicy.html<\/a>.<br \/>\nMost browsers allow you to refuse to accept cookies. (For example, in Internet Explorer you can refuse all cookies by clicking &#8216;Tools &gt; Internet Options &gt; Privacy&#8217; and selecting &#8216;Block all cookies&#8217; using the sliding selector.) This will, however, have a negative impact upon the usability of many websites, including scolma.org<br \/>\n<strong>(3) Using your Personal Data<\/strong><br \/>\nPersonal data submitted on this website will be used for the purposes specified in this privacy policy or in relevant parts of the website.<br \/>\nWe may use your personal information to:<br \/>\n(a) Administer the website.<br \/>\n(b) Improve your browsing experience by personalising the website.<br \/>\n(c) Enable your use of the services available on the website.<br \/>\n(d) Supply to you services purchased via the website.<br \/>\n(e) Send statements and invoices to you, and collect payments from you.<br \/>\n(f) Send you general (non-marketing) commercial communications.<br \/>\n(g) Send you email notifications which you have specifically requested.<br \/>\n(h) Send to you communications relating to our field of Interest [or the details of carefully-selected third parties] which we think may be of interest to you by post or, where you have specifically agreed to this, by email or similar technology (you can inform us at any time if you no longer require communications).<br \/>\n(i) Provide third parties with statistical information about our users \u2013 but this information will not be used to identify any individual user.<br \/>\n(j) Deal with enquiries and complaints made by or about you relating to the website.<br \/>\nWhere you submit personal information for publication on our website, we will publish and otherwise use that information in accordance with the license you grant to us.<br \/>\nWe will not without your express consent provide your personal information to any third parties for the purpose of direct marketing.<br \/>\nAll our website financial transactions are handled through our payment services provider, Paypal. You should only provide your personal information to Paypal after reviewing the Paypal privacy policy (available at <a href=\"http:\/\/www.paypal.com\">www.paypal.com<\/a>). We will share information with Paypal only to the extent necessary for the purposes of processing payments you make via our website.<br \/>\n<strong>(4) Disclosures<\/strong><br \/>\nWe may disclose information about you to any of our officers, agents, suppliers or subcontractors insofar as reasonably necessary for the purposes as set out in this privacy policy.<br \/>\nIn addition, we may disclose information about you:<br \/>\n(a) To the extent that we are required to do so by law;<br \/>\n(b) In connection with any legal proceedings or prospective legal proceedings;<br \/>\n(c) In order to establish, exercise or defend our legal rights (including providing information to others for the purposes of fraud prevention and reducing credit risk); and<br \/>\n(d) To the purchaser (or prospective purchaser) of any business or asset which we are (or are contemplating) selling.<br \/>\nExcept as provided in this privacy policy, we will not provide your information to third parties.<br \/>\n<strong>(5) International data transfers <\/strong><br \/>\nInformation that we collect may be stored and processed in and transferred between any of the countries in which we operate in order to enable us to use the information in accordance with this privacy policy.<br \/>\nIf you are in the European Economic Area (EEA), information which you provide may be transferred to countries which do not have data protection laws equivalent to those in force in the EEA.<br \/>\nIn addition, personal information that you submit for publication on the website will be published on the internet and may be available, via the internet, around the world.<br \/>\nYou expressly agree to such transfers of personal information.<br \/>\n<strong>(6) Security of your personal data<\/strong><br \/>\nWe will take reasonable technical and organisational precautions to prevent the loss, misuse or alteration of your personal information.<br \/>\nWe will store all the personal information you provide on our secure (password- and firewall- protected) servers. All electronic transactions you make to or receive from us will be encrypted using SSL technology.<br \/>\nOf Course, data transmission over the internet is inherently insecure, and we cannot guarantee the security of data sent over the internet.<br \/>\nYou are responsible for keeping your password and user details confidential. We will not ask you for your password.<br \/>\n<strong>(7) Policy amendments<\/strong><br \/>\nWe may update this privacy policy from time-to-time by posting a new version on our website. You should check this page occasionally to ensure you are happy with any changes.<br \/>\nWe may also notify you of changes to our privacy policy by email.<br \/>\n<strong>(8) Your rights<\/strong><br \/>\nYou may instruct us to provide you with any personal information we hold about you.<br \/>\n<strong>(9) Third party websites<\/strong><br \/>\nThe website contains links to other websites. We are not responsible for the privacy policies or practices of third party websites.<br \/>\n<strong>(10) Updating information<\/strong><br \/>\nPlease let us know if the personal information which we hold about you needs to be corrected or updated.<br \/>\n<strong>(11) Contact<\/strong><br \/>\nIf you have any questions about this privacy policy or our treatment of your personal data, please write to us by using our <a href=\"http:\/\/scolma.org\/contact-us\">Contact page<\/a> form<\/p>\n<hr \/>\n<p>\n<script type=\"text\/javascript\">\n\n\t \n\t  \n\t function  gdprPDAClick()\n\t {\n\t\tdocument.getElementById(\"gdprmenu1\").style.display= \"block\";\n\t\tdocument.getElementById(\"gdprmenu2\").style.display= \"none\";  \n\t\tdocument.getElementById(\"gdprmenu3\").style.display= \"none\";\n\t\tdocument.getElementById(\"gdprmenu4\").style.display= \"none\"; \n\t\t\n\t\t\/\/disable other tabs and color\n\t\tdocument.getElementById(\"gdprPDA\").style.backgroundColor= \"#A9A9A9\";\n\t\tdocument.getElementById(\"gdprFM\").style.backgroundColor= \"white\";  \n\t\tdocument.getElementById(\"gdprDR\").style.backgroundColor= \"white\";\n\t\tdocument.getElementById(\"gdprUR\").style.backgroundColor= \"white\";\n\t }\n\t function  gdprFMClick()\n\t {\n\t\tdocument.getElementById(\"gdprmenu1\").style.display= \"none\";\n\t\tdocument.getElementById(\"gdprmenu2\").style.display= \"block\";  \n\t\tdocument.getElementById(\"gdprmenu3\").style.display= \"none\";\n\t\tdocument.getElementById(\"gdprmenu4\").style.display= \"none\"; \n\t\t\n\t\t\/\/disable other tabs and color\n\t\tdocument.getElementById(\"gdprPDA\").style.backgroundColor= \"white\";\n\t\tdocument.getElementById(\"gdprFM\").style.backgroundColor= \"#A9A9A9\";  \n\t\tdocument.getElementById(\"gdprDR\").style.backgroundColor= \"white\";\n\t\tdocument.getElementById(\"gdprUR\").style.backgroundColor= \"white\";\n\t }\n\t function  gdprDRClick()\n\t {\n\t\tdocument.getElementById(\"gdprmenu1\").style.display= \"none\";\n\t\tdocument.getElementById(\"gdprmenu2\").style.display= \"none\";  \n\t\tdocument.getElementById(\"gdprmenu3\").style.display= \"block\";\n\t\tdocument.getElementById(\"gdprmenu4\").style.display= \"none\"; \n\t\t\n\t\t\/\/disable other tabs and color\n\t\tdocument.getElementById(\"gdprPDA\").style.backgroundColor= \"white\";\n\t\tdocument.getElementById(\"gdprFM\").style.backgroundColor= \"white\";  \n\t\tdocument.getElementById(\"gdprDR\").style.backgroundColor= \"#A9A9A9\";\n\t\tdocument.getElementById(\"gdprUR\").style.backgroundColor= \"white\";\n\t\t\n\t\t\n\t }\n\t function  gdprURClick()\n\t {\n\t\tdocument.getElementById(\"gdprmenu1\").style.display= \"none\";\n\t\tdocument.getElementById(\"gdprmenu2\").style.display= \"none\";  \n\t\tdocument.getElementById(\"gdprmenu3\").style.display= \"none\";\n\t\tdocument.getElementById(\"gdprmenu4\").style.display= \"block\"; \n\t\t\n\t\t\/\/disable other tabs and color\n\t\tdocument.getElementById(\"gdprPDA\").style.backgroundColor= \"white\";\n\t\tdocument.getElementById(\"gdprFM\").style.backgroundColor= \"white\";  \n\t\tdocument.getElementById(\"gdprDR\").style.backgroundColor= \"white\";\n\t\tdocument.getElementById(\"gdprUR\").style.backgroundColor= \"#A9A9A9\";\n\t }\n<\/script>\n\n\n<div class=\"containerr-fluid\">\n<div class=\"gdpr-tab\">\n  <button class=\"active gdpr-tablinks\" id=\"gdprPDA\" onclick=\"gdprPDAClick()\">Data Access Request<\/button>\n  <button id=\"gdprFM\" class=\"gdpr-tablinks\" onclick=\"gdprFMClick()\">Forget Data Request<\/button>\n  <button id=\"gdprDR\" class=\"gdpr-tablinks\" onclick=\"gdprDRClick()\">Rectify Data Request<\/button>\n  \n   <button id=\"gdprUR\" class=\"gdpr-tablinks\" onclick=\"gdprURClick()\">Unsubscribe Request<\/button>\n<\/div>\n\n<div class=\"\">\n    \n    <div id=\"gdprmenu1\">\n      <div class=\"col-18\"><br>\n  <div class=\"gdprdefaults gdprpanel\">\n    <div class=\"gdpr-panel-heading\"><h4 style=\"color:white\">Data Access Request<\/h4><\/div>\n    <div class=\"gdpr-panel-body\">\n       <br\/>\n<div id=\"gdprpda\" class=\"form-group\">\n<form action=\"\" method=\"post\">\n<p>\n<b>Request a copy of the data we have about you. An email will be sent to you with the data after it\u2019s generated.<\/b><\/p>\n\n<label for=\"gdpremailpda\">Email:<\/label>\n<input type=\"email\" id=\"gdpremailpda\" class=\"gdprinp\" name=\"gdpremailpda\" value=\"\" required=\"\">\n<br>\n <div id=\"recap-container-4\"><table><tr><td><div data-recap=\"loader-round\" id=4 class=\"recap-loader-box\"><\/div><\/td><td><div class=\"notabot\">I am not a Bot<\/div><\/td><\/tr><\/table><\/div>\n\t <input type='hidden' name='wp_gdpr_nonce_field' value='573c076a92'>\n <button type=\"submit\" name=\"gdprpdasubmit\" class=\"submitrequestbtn\" onclick=\"return checkUnlockStatCaptCha(4)\">Submit Request<\/button>\n\n<\/form>\n        \n<\/div>\n        \n    <\/div>\n  <\/div>\n<\/div>\n<\/div>\n<div id=\"gdprmenu2\">\n<div class=\"col-18\"><br>\n<div class=\"gdprdefaults gdprpanel\">\n<div class=\"gdpr-panel-heading\"><h4 style=\"color:white\">Forget Data Request<\/h4><\/div>\n<div class=\"gdpr-panel-body\">\n<div id=\"gdprfm\" class=\"Form Control\"> \n<form action=\"\" method=\"post\"><br>\n<p>\n<b>\nSelect what you wish to be forgotten. You\u2019ll be notified by email once it\u2019s done.\n<\/b><\/p>\n<label class=\"containerr\">\nComments\n<input type=\"checkbox\" name=\"gdprfmchkboxc\" value=\"c\">\n<span class=\"gdprcheckmark\"><\/span>\n<\/label>\n\nYour comments on various posts<br><br>\n<label class=\"containerr\">\n<b>Posts<\/b>\n<input type=\"checkbox\" name=\"gdprfmchkboxp\" value=\"p\">\n<span class=\"gdprcheckmark\"><\/span>\n<\/label>\nArticles & posts written by you\n<br><br>\n<label class=\"containerr\">\n<b>User Data<\/b>\n<input type=\"checkbox\" name=\"gdprfmchkboxu\" value=\"u\">\n<span class=\"gdprcheckmark\"><\/span>\n<\/label>\nYour user data recorded in database.\n<br>\n <label for=\"\">Email:<\/label>\n<input type=\"email\" class=\"gdprinp\" name=\"gdprfmemail\" value=\"\" required=\"\">\n<br>\n<!-- <label class=\"containerr\">\nI consent to my email being collected in order to process this request. See Privacy Policy page for more information.\n<input type=\"checkbox\" name=\"gdprchkbox\" value=\"1\" required=\"\">\n\n<span class=\"gdprcheckmark\"><\/span>\n<\/label> -->\n<br>\n<div id=\"recap-container-1\"><table><tr><td><div data-recap=\"loader-round\" id=1 class=\"recap-loader-box\"><\/div><\/td><td><div class=\"notabot\">I am not a Bot<\/div><\/td><\/tr><\/table><\/div>\n<br>\n<input type='hidden' name='wp_gdpr_nonce_field' value='573c076a92'>\n <button type=\"submit\" name=\"gdprfmsubmit\" class=\"submitrequestbtn\" onclick=\"return checkUnlockStatCaptCha(1)\">Submit Request<\/button>  \n<\/form>\n<\/div> \n        \n    <\/div>\n  <\/div>\n<\/div>\n    <\/div>\n    <div id=\"gdprmenu3\">\n    <div id=\"gdprdr\" class=\"Form Control\">\n      <div class=\"col-18\"><br>\n  <div class=\"gdprdefaults gdprpanel\">\n    <div class=\"gdpr-panel-heading\"><h4 style=\"color:white\">Rectify Data Request<\/h4><\/div>\n    <div class=\"gdpr-panel-body\">\n   <div id=\"gdprdr\" class=\"Form Control\"> \n<form action=\"\" method=\"post\"><br>\n\n<label class=\"containerr\">\nComments\n<input type=\"checkbox\" name=\"gdprdrchkboxc\" value=\"c\">\n<span class=\"gdprcheckmark\"><\/span>\n<\/label>\n\nYour comments on various posts<br><br>\n<label class=\"containerr\">\n<b>Posts<\/b>\n<input type=\"checkbox\" name=\"gdprdrchkboxp\" value=\"p\">\n<span class=\"gdprcheckmark\"><\/span>\n<\/label>\nArticles & posts written by you\n<br><br>\n<label class=\"containerr\">\n<b>User Data<\/b>\n<input type=\"checkbox\" name=\"gdprdrchkboxu\" value=\"u\">\n<span class=\"gdprcheckmark\"><\/span>\n<\/label>\nYour user data recorded in database.<br>\n<label>\nWhat is to be rectified?<\/label>\n<textarea name=\"gdprrectification\" class=\"gdprinp\" rows=\"5\" required=\"\"><\/textarea>\n\n<label for=\"\">Email:<\/label>\n<input type=\"email\" class=\"gdprinp\" name=\"gdprdremail\" value=\"\" required=\"\">\n\n<br>\n<div id=\"recap-container-2\"><table><tr><td><div data-recap=\"loader-round\" id=2 class=\"recap-loader-box\"><\/div><\/td><td><div class=\"notabot\">I am not a Bot<\/div><\/td><\/tr><\/table><\/div>\n<br>\n<input type='hidden' name='wp_gdpr_nonce_field' value='573c076a92'>\n<button type=\"submit\" name=\"gdprdrsubmit\" class=\"submitrequestbtn\" onclick=\"return checkUnlockStatCaptCha(2)\">Submit Request<\/button>\n\n<\/form>\n         <\/div> \n    <\/div>\n  <\/div>\n<\/div>\n<\/div>\n    <\/div>\n\t\n\t<div id=\"gdprmenu4\">\n    <div id=\"gdprur\" class=\"Form Control\">\n      <div class=\"col-18\"><br>\n  <div class=\"gdprdefaults gdprpanel\">\n    <div class=\"gdpr-panel-heading\"><h4 style=\"color:white\">Unsubscribe Request Form<\/h4><\/div>\n    <div class=\"gdpr-panel-body\">\n   <div id=\"gdprur\" class=\"Form Control\"> <br>\n   <div class=\"gdpr-alert\" style=\"color:black;\"><\/div>\n<form action=\"\" method=\"post\"><br\/>\n<label for=\"\">Name:<\/label>\n<input type=\"text\" id=\"\" class=\"gdprinp\" name=\"unsname\" value=\"\" required=\"\">\n<br>\n<label for=\"\">Email:<\/label>\n<input type=\"email\" id=\"\" class=\"gdprinp\" name=\"unsemail\" value=\"\" required=\"\">\n<br>\n <div id=\"recap-container-3\"><table><tr><td><div data-recap=\"loader-round\" id=3 class=\"recap-loader-box\"><\/div><\/td><td><div class=\"notabot\">I am not a Bot<\/div><\/td><\/tr><\/table><\/div>\n <br>\n <input type='hidden' name='wp_gdpr_nonce_field' value='573c076a92'>\n <button type=\"submit\" name=\"gdprunssubmit\" class=\"submitrequestbtn\" onclick=\"return checkUnlockStatCaptCha(3)\">Submit Request<\/button>\n<\/form>\n<\/div>\n<\/div>\n        \n    <\/div>\n  <\/div>\n<\/div>\n<\/div>\n\t\n\t\n  <\/div>\n<\/div>\n<script type=\"text\/javascript\">\n  document.getElementById(\"gdprmenu2\").style.display= \"none\";  \n\tdocument.getElementById(\"gdprmenu3\").style.display= \"none\";\n\tdocument.getElementById(\"gdprmenu4\").style.display= \"none\";\n\t\n\t\/\/disable other tabs and color\n\t\tdocument.getElementById(\"gdprPDA\").style.backgroundColor= \"#A9A9A9\";\n\t\tdocument.getElementById(\"gdprFM\").style.backgroundColor= \"white\";  \n\t\tdocument.getElementById(\"gdprDR\").style.backgroundColor= \"white\";\n\t\tdocument.getElementById(\"gdprUR\").style.backgroundColor= \"white\";\n<\/script>\n<style>\n\/* Customize the label (the containerr) *\/\n.containerr {\n  display: block;\n  position: relative;\n  padding-left: 35px;\n  margin-bottom: 12px;\n  cursor: pointer;\n  \n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n\/* Hide the browsers default checkbox *\/\n.containerr input {\n  position: absolute;\n  opacity: 0;\n  cursor: pointer;\n}\n\n\/* Create a custom checkbox *\/\n.gdprcheckmark {\n  position: absolute;\n  top: 0;\n  left: 0;\n  height: 25px;\n  width: 25px;\n  background-color: #eee;\n}\n\n\/* On mouse-over, add a grey background color *\/\n.containerr:hover input ~ .gdprcheckmark {\n  background-color: #ccc;\n}\n\n\/* When the checkbox is checked, add a blue background *\/\n.containerr input:checked ~ .gdprcheckmark {\n  background-color: #2196F3;\n}\n\n\/* Create the gdprcheckmark\/indicator (hidden when not checked) *\/\n.gdprcheckmark:after {\n  content: \"\";\n  position: absolute;\n  display: none;\n}\n\n\/* Show the gdprcheckmark when checked *\/\n.containerr input:checked ~ .gdprcheckmark:after {\n  display: block;\n}\n\n\/* Style the gdprcheckmark\/indicator *\/\n.containerr .gdprcheckmark:after {\n  left: 9px;\n  top: 5px;\n  width: 5px;\n  height: 10px;\n  border: solid white;\n  border-width: 0 3px 3px 0;\n  -webkit-transform: rotate(45deg);\n  -ms-transform: rotate(45deg);\n  transform: rotate(45deg);\n}\n\n.gdprpanel {\n    border-color: #525863;\n}\n.gdprpanel>.gdpr-panel-heading {\n    color: #fff;\n     background: linear-gradient(#525863, #444a55);\n    border-color: #525863;\n}\n\n.gdpr-panel-heading {\n  padding: 2px 10px;\n    border-bottom: 1px solid transparent;\n    border-top-left-radius: 3px;\n    border-top-right-radius: 3px;\n\n}\n\n.gdprdefaults {\n\n    margin-bottom: 20px;\n    background-color: #fff;\n    border: 1px solid transparent;\n    border-radius: 4px;\n    -webkit-box-shadow: 0 1px 1px rgba(0,0,0,.05);\n    box-shadow: 0 1px 1px rgba(0,0,0,.05);\n\n}\n\n.gdpr-gdpr-panel-body {\n  padding: 15px;\n}\n\ninput[type=email].gdprinp,input[type=text].gdprinp,textarea.gdprinp {\n    width: 100%;\n    padding: 12px;\n    border: 1px solid #ccc;\n    border-radius: 4px;\n    resize: vertical;\n}\n\n\/*Button Style  *\/\n.submitrequestbtn {\n    background-color: #008CBA; \/* Green *\/\n    border: none;\n    color: white;\n    padding: 10px 24px;\n    text-align: center;\n    text-decoration: none;\n    display: inline-block;\n    font-size: 16px;\n    border-radius: 4px;\n\tmargin-top:10px;\n}\n\n\n\/* Style the tab *\/\n.gdpr-tab {\n    overflow: hidden;\n    border: 1px solid #ccc;\n    background-color: white;\n\n}\n\n\/* Style the buttons inside the tab *\/\n.gdpr-tab button {\n    background-color: inherit;\n    float: left;\n    border: none;\n    outline: none;\n    cursor: pointer;\n    padding: 14px 16px;\n    transition: 0.3s;\n    font-size: 17px;\n\tcolor:black;\n}\n\n\/* Change background color of buttons on hover *\/\n.gdpr-tab button:hover {\n    background-color: #ddd;\n}\n\n.gdpr-alert {\n    padding: 20px;\n    background-color: #f4debc;\n    color: white;\n    border-radius: 4px;\n\n}\n\/*e7d7bf*\/\n<\/style>\n\n\n\n<style>\ndiv[data-recap=loader-round]\n{\n\tcursor:pointer;\n}\n.recap-loader-box{\n  border: 6px solid #b3d9ff; \/* Light grey *\/\n  border-radius: 8%;\n  width: 30px;\n  height: 30px;\n  margin-top:10px;\n}\n.recap-loader-round{\n  border: 8px solid #f3f3f3; \/* Light grey *\/\n  border-top: 8px solid #3498db; \/* Blue *\/\n  border-radius: 50%;\n  width: 40px;\n  height: 40px;\n  animation: spin-captcharecaptcha 2s linear infinite;\n}\n\n@keyframes spin-captcharecaptcha {\n  0% { transform: rotate(0deg); }\n  100% { transform: rotate(360deg); }\n}\n.notabot\n{\n\tfont-size:20px;\n\tfont-weight:600;\n\topacity:0.5;\n\tmargin-left:5px;\n}\n.gdprpanel table {\n max-width:400px !important;\n border:0px !important;\n}\n\n<\/style>\n\n<script type=\"text\/javascript\">\nvar recapdiv=document.querySelectorAll(\"div[data-recap=loader-round]\");\nvar temppcurrentselected;\nvar recapblock=[];\nvar recapmousehovercount=0;\ndocument.body.onmousemove=function(){++recapmousehovercount;};\n    for(var i=0;i<recapdiv.length;i++)\n\t{\n\t\ttemppcurrentselected=recapdiv[i];\n\t\t\/\/alert(i);\n\t\trecapblock[i]=2;\n\t\trecapdiv[i].addEventListener('click',function(event){\n\t\tvar currentclickedid=event.target.id;\n\t\trecapblock[currentclickedid]=1;\n\t\tevent.target.classList.remove('recap-loader-box');\n        event.target.classList.add(\"recap-loader-round\");\n            if(recapmousehovercount>16)\n            {\n\t\t\tvar rand_time=((Math.random()*6)+2)*1000;\n\t\t\tvar t=setTimeout(function(){\t\t\t\t\n\t\t\tevent.target.innerHTML='<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" style=\"width:auto;height:100%;\" fill=\"#008000\" viewBox=\"0 0 24 24\"><path d=\"M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z\"\/><\/svg>';\n\t\t\tevent.target.classList.add('recap-loader-box');\n            event.target.classList.remove(\"recap-loader-round\");\n\t\t\trecapblock[currentclickedid]=0;\n\t\t\t\n\t\t\t},rand_time,event,recapblock[currentclickedid]);\n\t\t\t}\n\t\t\telse\n\t\t\t{\n\t\t\t\tcaptchaBoxDisplay(currentclickedid);\n\t\t\t}\n \t\t\n\t\t});\n\t}\n\tfunction capRecapCreateCookie(cname, cvalue) {\n\tvar d = new Date();\n\td.setTime(d.getTime() + (60*60*2000));\n\tvar expires = \"expires=\"+ d.toUTCString();\n\tdocument.cookie = cname + \"=\" + cvalue + \";\" + expires + \";path=\/\";\n\t}\n    function capRecapGetCookie(cname) {\n  var name = cname + \"=\";\n  var decodedCookie = decodeURIComponent(document.cookie);\n  var ca = decodedCookie.split(';');\n  for(var i = 0; i <ca.length; i++) {\n    var c = ca[i];\n    while (c.charAt(0) == ' ') {\n      c = c.substring(1);\n    }\n    if (c.indexOf(name) == 0) {\n      return c.substring(name.length, c.length);\n    }\n  }\n  return \"\";\n}\nfunction captchaBoxDisplay(idd)\n\t{\n\t\tvar text = \"\";\n        var possible = \"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789\";\nfor (var i = 0; i < 5; i++)\n         {text += possible.charAt(Math.floor(Math.random() * possible.length));}\n\t\tcapRecapCreateCookie('caprecapcookie'+idd,text);\n\t\tvar boximg=\"<table><tr><td><img src='https:\/\/scolma.org\/wp-content\/plugins\/wpgdpr_g8zuDP2\/img\/img.php?otp=\"+text+\"' style='height:30px;'><\/td>\";\n\t\tvar boxtext=\"<td><input id='captchatextinput\"+idd+\"' type='text' style='height:30px;' placeholder='Write the text here'><\/td><\/tr><\/table>\";\n\t\tdocument.getElementById(\"recap-container-\"+idd).innerHTML=boximg+boxtext;\n\t}\n\tfunction captchaRecaptchaMatchCookie(idd)\n\t{\n\t\ttry\n\t\t{\n\t\tvar val=document.getElementById(\"captchatextinput\"+idd).value;\n\t\ttry\n\t\t{\n\t\t\tvar saved=capRecapGetCookie('caprecapcookie'+idd);\n\t\t\tif(saved ==val)\n\t\t\t{\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\telse\n\t\t\t{\n\t\t\t\tcaptchaBoxDisplay(idd);\n\t\t\t\treturn false;\n\t\t\t}\n\t\t}\n\t\tcatch(err)\n\t\t{return false;}\n\t\t}\n\t\tcatch(err)\n\t\t{return 'nobox';}\n\t}\n\tfunction checkUnlockStatCaptCha(idd)\n\t{\n\t\tif(captchaRecaptchaMatchCookie(idd)=='nobox')\n\t\t{\n\t\t\tif(recapblock[idd]==0)\n\t\t\t{\n\t\t\treturn true;\n\t\t\t}\n\t\t\telse\n\t\t\t{\n\t\t\t\tif(recapblock[idd]==1){captchaBoxDisplay(idd);}\n\t\t\trecapblock[idd]=2;\n\t\t\treturn false;\n\t\t\t}\n\t\t}\n\t\telse\n\t\t{\n\t\t\treturn captchaRecaptchaMatchCookie(idd);\n\t\t}\n\t}\t\n<\/script>\n<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<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\n<p class=\"small\">This website privacy policy is based on a template created by Template-contracts.co.uk and distributed by Website-law.co.uk.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This notice explains what personal data SCOLMA holds about members, subscribers, enquirers and associates, why it is held, how it is used and how it can be corrected or removed. What personal data do we hold? The personal data we routinely collect when you join as a member or subscriber includes your name and title, [&hellip;]<\/p>\n","protected":false},"author":11,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"open","ping_status":"open","template":"page-fullwidth.php","meta":[],"_links":{"self":[{"href":"https:\/\/scolma.org\/index.php?rest_route=\/wp\/v2\/pages\/13"}],"collection":[{"href":"https:\/\/scolma.org\/index.php?rest_route=\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/scolma.org\/index.php?rest_route=\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/scolma.org\/index.php?rest_route=\/wp\/v2\/users\/11"}],"replies":[{"embeddable":true,"href":"https:\/\/scolma.org\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=13"}],"version-history":[{"count":23,"href":"https:\/\/scolma.org\/index.php?rest_route=\/wp\/v2\/pages\/13\/revisions"}],"predecessor-version":[{"id":3061,"href":"https:\/\/scolma.org\/index.php?rest_route=\/wp\/v2\/pages\/13\/revisions\/3061"}],"wp:attachment":[{"href":"https:\/\/scolma.org\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=13"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}