function comment_feedback(formname, location) {
oComment = document.getElementById("commentaar_form");
if (oComment == null)
return false;
oFeedback = document.getElementById("feedback_form");
if (oFeedback == null)
return false;
if (formname == "commentaar_form") {
oComment.style.display = "";
oFeedback.style.display = "none";
} else {
oComment.style.display = "none";
oFeedback.style.display = "";
}
CMS_layout_set_div_height();
if (location)
window.location.hash = "#a_form_" + formname;
return false;
}
function get_bottom(block_id) {
var retval = 0;
if (block_id != null) {
block_obj = document.getElementById(block_id);
if (block_obj != null) {
var top = block_obj.offsetTop -
block_obj.scrollTop + block_obj.clientTop;
var height = block_obj.getBoundingClientRect().height;
retval = Math.round(top + height);
}
}
return retval;
}
function CMS_layout_set_div_height() {
var top_b = get_bottom("cms_top_div");
var middle_b = get_bottom("cms_middle_div");
if (middle_b < 400) { middle_b = 400; }
var left_b = get_bottom("cms_left_div");
var right_b = get_bottom("cms_right_div");
var bottom_top = middle_b;
if (right_b > bottom_top) { bottom_top = right_b; }
if (left_b > bottom_top) { bottom_top = left_b; }
bottom_obj = document.getElementById("cms_bottom_div");
if (bottom_obj != null) {
bottom_obj.style.position = "absolute";
bottom_obj.style.top = bottom_top + "px";
}
dev_obj = document.getElementById("div_developed_by");
if (dev_obj != null) {
var bottom_b = get_bottom("cms_bottom_div");
var dev_top = bottom_top;
if (bottom_b > dev_top) { dev_top = bottom_b; }
dev_obj.style.position = "absolute";
dev_obj.style.top = dev_top + "px";
}
}
function get_CaretPosition(ta_obj) {
if (ta_obj === undefined) {
return -1;
}
if (ta_obj.selectionStart === undefined) {
return -1;
}
return ta_obj.selectionStart;
}
function NulA_CMS_show(taid) {
div = document.getElementById("shw_" + taid);
if (div == null) return false;
ta = document.getElementById(taid);
if (ta == null) return false;
if (div.style.display == "none") {
div.style.display = "";
} else {
div.style.display = "none";
}
div.textContent = ta.value;
return false;
}
/*
If you want to use this script, please keep the original author in this header!
NulA_remove_spaces:
Purpose: Removes all spaces from an inputfield. For use in combination with sql-keys
Author: Andreas Firewolf
Date: 2 april 2014
*/
function NulA_remove_spaces(ident)
{
var obj = document.getElementById(ident);
if (obj != null)
{
var value = '';
for (i=0; i 32)
value += obj.value.substring(i, i+1);
}
obj.value = value;
}
}
/*
If you want to use this script, please keep the original author in this header!
NulA_validate_emailaddress:
Purpose: Validates if the value can be a valid email-address.
It does NOT check if the email address exists.
Author: Andreas Firewolf
Date: 11 december 2017
Returns true when valid or false when invalid
*/
function NulA_validate_emailaddress(email_value)
{
// email_address a@a.nl
var email_1 = email_value.split("@", 3);
if (email_1.length != 2)
return false;
if (email_1[0].length < 1)
return false;
var email_2 = email_1[1].split(".", 3);
if (email_2.length < 2)
return false;
var i = email_2.length - 1;
if (email_2[i].length < 2)
return false;
return true;
}
/*
If you want to use this script, please keep the original author in this header!
NulA_show_href
NulA_hide_href
Purpose NulA_show_href
When the mouse hovers over a link to a page
a div-block becomes visible and is shown under the link.
Purpose NulA_hide_href
When the mouse is removed from the link above
the div-block is made invisible
Author: Andreas Firewolf
Date: 4 juli 2020
*/
document.addEventListener('mousemove', NulA_MousePosition);
var NulA_screenX, NulA_screenY, NulA_clientX, NulA_clientY;
function NulA_MousePosition(e) {
NulA_screenX = parseInt(e.screenX);
NulA_screenY = parseInt(e.screenY);
NulA_clientX = parseInt(e.clientX);
NulA_clientY = parseInt(e.clientY);
}
function NulA_show_href(objMouseover, nula_href)
{
objPopup = document.getElementById(nula_href);
if (objPopup != null && objMouseover != null) {
var width = objPopup.getBoundingClientRect().width + 20;
objPopup.style.position = "fixed";
objPopup.style.display = "block";
// height :: the height of the popup block + 40 pixels
var height = objPopup.getBoundingClientRect().height + 40;
var top = NulA_clientY - height;
if (top < 10) { top = NulA_clientY + 40; }
var left = parseInt(objMouseover.getBoundingClientRect().left);
if (left > 20) { left -= 20; }
objPopup.style.top = top + "px";
objPopup.style.left = left + "px";
}
/* else
alert("nula_href is null");*/
return false;
}
function NulA_hide_href(nula_href)
{
objPopup = document.getElementById(nula_href);
if (objPopup != null) {
objPopup.style.display = "none";
}
return false;
}
/*
© Copyright 2013, 2014 Andreas Firewolf, (Andreas van der Wal).
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see .
*/
/*
If you want to use this script, please keep the original author in this header!
NulA_CharCount:
Purpose: Script for applying maxlengths to textareas and monitoring their character lengths.
Author: Andreas Firewolf
Date: 10 october 2012
Revised: 15 october 2014
Revised: 18 februari 2017
*/
function NulA_CharCount(formname, fldname, maxlength, critical)
{
var objTA = document.forms[formname].elements.namedItem(fldname); // textarea as object
if (objTA == null) {
return false;
}
var objError = document.getElementById('error_div_' + formname + '_' + fldname); // error div as object
if (objError == null) {
return false;
}
var objBold = document.getElementById('b_' + formname + '_' + fldname); // bold as object
var remaining = maxlength - objTA.value.length; // chars left to type
var labelclass = 'ta_changed'; // set the labelclass to a default value.
if (remaining < 0) { // input is to big. Set the error element to visbible.
labelclass = 'ta_error';
objError.style.display = "";
} else {
objError.style.display = "none"; // make error element invisble
if (remaining < critical)
labelclass = 'ta_critical'; // not many chars left to type
}
if (objBold != null) {
objBold.innerHTML = remaining; // display amount of chars left to type
objBold.className = labelclass; // set the style (color, font) of the element with the chars left to type
}
return false;
}
function CMS_dblClick(formname) { document.forms[formname].submit(); }
function NulA_CMS_switch_on_off(elementid) {
div = document.getElementById(elementid);
if (div == null)
return false;
if (div.style.display == "none") {
div.style.display = "";
} else {
div.style.display = "none";
}
return false;
}
function NulA_CMS_switch_on_off_2(elementid_1, elementid_0) {
div1 = document.getElementById(elementid_1);
if (div1 == null)
return false;
div0 = document.getElementById(elementid_0);
if (div0 == null)
return false;
if (div1.style.display == "none") {
div1.style.display = "";
div0.style.display = "none";
} else {
div1.style.display = "none";
div0.style.display = "";
}
NulA_js_after_resize();
return false;
}
NulA_CMS_insert_index = new Map();
NulA_CMS_insert_index.set('a', 0);
NulA_CMS_insert_index.set('amp', 1);
NulA_CMS_insert_index.set('b', 2);
NulA_CMS_insert_index.set('blockquote', 3);
NulA_CMS_insert_index.set('br', 4);
NulA_CMS_insert_index.set('div', 5);
NulA_CMS_insert_index.set('empty', 6);
NulA_CMS_insert_index.set('gt', 7);
NulA_CMS_insert_index.set('h1', 8);
NulA_CMS_insert_index.set('h2', 9);
NulA_CMS_insert_index.set('h3', 10);
NulA_CMS_insert_index.set('h4', 11);
NulA_CMS_insert_index.set('h5', 12);
NulA_CMS_insert_index.set('h6', 13);
NulA_CMS_insert_index.set('hr', 14);
NulA_CMS_insert_index.set('href', 15);
NulA_CMS_insert_index.set('i', 16);
NulA_CMS_insert_index.set('iframe', 17);
NulA_CMS_insert_index.set('img', 18);
NulA_CMS_insert_index.set('li', 19);
NulA_CMS_insert_index.set('lt', 20);
NulA_CMS_insert_index.set('ol', 21);
NulA_CMS_insert_index.set('p', 22);
NulA_CMS_insert_index.set('pipe', 23);
NulA_CMS_insert_index.set('s4', 24);
NulA_CMS_insert_index.set('sp', 25);
NulA_CMS_insert_index.set('span', 26);
NulA_CMS_insert_index.set('table', 27);
NulA_CMS_insert_index.set('td', 28);
NulA_CMS_insert_index.set('tr', 29);
NulA_CMS_insert_index.set('ul', 30);
NulA_CMS_insert_index.set('div.attention', 31);
NulA_CMS_insert_index.set('p.cursief-10', 32);
NulA_CMS_insert_array =
[
[' ', 9, 10],
['&', 5, 0],
['your text ', 3, 9],
['your text ', 12, 9],
[' \n', 7, 0],
['your text
', 5, 9],
['
', 14, 0],
['>', 4, 0],
['your text ', 4, 9],
['your text ', 4, 9],
['your text ', 4, 9],
['your text ', 4, 9],
['your text ', 4, 9],
['your text ', 4, 9],
[' \n', 7, 0],
[' ', 9, 11],
['your text ', 3, 9],
['', 29, 11],
[' ', 10, 11],
[' your text
\n ', 9, 9],
['<', 4, 0],
['\n your text
\n \n ', 14, 9],
['your text
', 3, 9],
['&124;', 5, 0],
[' ', 24, 0],
[' ', 6, 0],
['your text ', 6, 9],
['', 23, 9],
[' your text ', 8, 9],
[' \n your text \n ', 15, 9],
['', 14, 9],
[' \n\n', 27, 9],
['your text
\n', 22, 9]
];
/*
© Copyright 2013, 2014 Andreas Firewolf, (Andreas van der Wal).
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see .
*/
/*
If you want to use this script, please keep the original author in this header!
Purpose: Script to insert in a textarea the selected option from a select-box.
Author: Andreas Firewolf
Date: 10 november 2013
Revised: 15 october 2014
Redesigned: 21 May 2020
*/
function NulA_CMS_insert_sel(formname, fname, maxlength, critical)
// maxlength, critical needed for NulA_CharCount();
{
objSB = document.forms[formname].elements.namedItem("sb_" + fname);
if (objSB == null) return false;
var selector = objSB.options[objSB.selectedIndex].value;
if (selector == "a") selector = "href";
NulA_CMS_insert(formname, fname, selector, maxlength, critical);
insert = "";
return false;
}
/*
If you want to use this script, please keep the original author in this header!
NulA_CMS_insert:
Purpose: Script for html editing.
Author: Andreas Firewolf
Date: 7 november 2013
Revised: 15 october 2014
Redesigned: 21 May 2020
*/
function NulA_CMS_insert(formname, fname, ac, maxlength, critical)
// maxlength, critical needed for NulA_CharCount();
{
if (typeof(document.forms[formname]) === "undefined") {
alert("formname: " + formname + " , fname: " + fname + " , ac: " + ac);
}
obj = document.forms[formname].elements.namedItem(fname);
if (obj == null) return false;
i_select = 0;
insert = "";
// alert("obj not null");
// alert("ac :: " + ac);
if (typeof(NulA_CMS_insert_index) === "undefined") return false;
if (typeof(NulA_CMS_insert_array) === "undefined") return false;
var insert_array_idx = NulA_CMS_insert_index.get(ac);
var insert = NulA_CMS_insert_array[insert_array_idx][0];
// alert("insert :: " + insert);
var Caretpos = get_CaretPosition(obj);
// alert("pos: " + pos);
oldValue = obj.value;
len = oldValue.length;
if (Caretpos < 0 || Caretpos >= len)
{ // insert somewhere at the end
Caretpos = len;
newValue = oldValue + insert;
}
else
{ // insert at the beginning
if (Caretpos == 0)
{
Caretpos = len;
newValue = insert + oldValue;
}
else
{ // insert somewhere in between
newValue = oldValue.substring(0, Caretpos) + insert + oldValue.substring(Caretpos, len);
}
}
obj.value = newValue;
NulA_CharCount(formname, fname, maxlength, critical);
obj.focus();
if (obj.selectionStart) {
var selectBegin = Caretpos + NulA_CMS_insert_array[insert_array_idx][1];
var selectEnd = selectBegin + NulA_CMS_insert_array[insert_array_idx][2];
obj.setSelectionRange(selectBegin, selectEnd);
}
// alert("obj.value: " + obj.value);
return false;
}
var NulA_Fill_vars = new Array();
NulA_Fill_vars[0] = "";
NulA_Fill_vars[1] = "";
function NulA_Fill_inputfield() {
document.forms["commentaar"].elements.namedItem("commentaar_text").value = NulA_Fill_vars[0];
document.forms["feedback"].elements.namedItem("feedback_text").value = NulA_Fill_vars[1];
}
function NulA_js_after_resize() {
CMS_layout_set_div_height();
}
function CMS_OnloadFunction() {
NulA_js_cookies_enabled();
NulA_Fill_inputfield();
NulA_js_after_resize();
}
function NulA_submit_function(formname) {
if (typeof NulA_Form_Validation === "function") {
if (NulA_Form_Validation(formname) == false) {
return false;
}
}
document.forms[formname].submit();
}
screen_width = 1000;
screen_smallest = 640;
screen_largest = 1000;
if (window.innerWidth < screen_width && screen_width > screen_smallest) {
window.location = "https://www.andreas333.com/index.php?pi=658&wi=" + window.innerWidth;
} else {
if (window.innerWidth > screen_width && screen_width < screen_largest) {
window.location = "https://www.andreas333.com/index.php?pi=658&wi=" + window.innerWidth;
}
}
function NulA_OnKeyDown(event, formname, fname, maxlength, critical) {
var submitform = 1;
var insert_sel = 1;
if(typeof(formname) === "undefined") {
submitform = 0;
insert_sel = 0;
}
if(typeof(fname) === "undefined" || typeof(maxlength) === "undefined")
insert_sel = 0;
if ( event.altKey == true ) {
switch (event.keyCode) {
case 117:
if (submitform == 1)
NulA_submit_function(formname);
event.preventDefault();
break;
case 97:
if (insert_sel == 1) {
if (typeof(NulA_CMS_insert_sel) == "function") {
NulA_CMS_insert_sel(formname, fname, maxlength, critical);
}
}
event.preventDefault();
break;
}
}
}
//-->
Cursist drs. Rene-Paul over Firewolf
Drs. Rene-Paul heeft jarenlang cursussen gevolg bij Firewolf
en is meester van de Cirkel van Licht en Liefde.
Hieronder staat een interview met hem uit een documentaire van 1997.
<
oscript>
Met Licht en Liefde, Andreas Firewolf
Korte auto-biografie
Consulten en persoonlijke begeleiding
Opleidingen en trainingen
Korte autobiografie van Andreas Firewolf
Contact formulier
Telefonisch consult
Consulten, workshops en begeleiding
Bij jou thuis !
Als je huiskamer groot genoeg is, kun je een workshop thuis organiseren.
Als je een spiritueel centrum hebt, kan Firewolf bij jou een workshop geven.
In Noord-oost Groningen
Voor persoonlijke consulten en inwijdingen kun je naar ons centrum komen.
Wie en wat is Firewolf
Ontwikkeling van ons centrum in noord-oost Groningen
Reis door de IJslandse wereldboom
96 TRANCE-FORMATIES en astrale reizen
Sjamanistische reizen en inwijdingen.
Jungiaanse transformaties en psychologie.
Werken met archetypen.
Online raadplegen van de Runentarot
25 Runenkaarten, gebaseerd op de oude noorse Runenrij.
De kaart Ginnunga Gap: het misleidende gat, de grote leegte.
48 Wereldkaarten, gebaseerd op de werelden van Yggrdasil.
Vier keer twaalf werelden, overeenkomstig de vier elementen en hun symbolen: Schilden, Drinkhoorns, Zwaarden en Speren.
20 Klasse kaarten.
Vier keer vijf kaarten, overeenkomstig de vier elementen.
Voor ieder element de klassen Knecht, Vrije, Leider, Krijger en Aas.
Online yoga
Ontwikkel je energiestromen en leer ze beheersen:
Rajas: de snelle energie
Satvas: de harmonieuze energie
Tamas: de stabiele energie
Kundalini: de transformerende en integrerende energie
Ontwikkel je negen chakra's.
Ontwikkel en reinig je negen lichamen.
Contact formulier
Inloggen
Interessante links
Algemene informatie over consulten
Telefonisch consult
Gesprek met Andreas Firewolf en Eva Silesia
Persoonlijke begeleiding van Andreas Firewolf
Een degelijke meerjarige opleiding in sjamanisme, yoga en spiritualiteit
Van deelnemers wordt ondermeer het volgende verwacht:
Je rookt niet, drinkt geen alcohol en je gebruikt geen recreatieve drugs.
Je bent vegetarier. D.w.z.: Je eet geen voedsel van gedode dieren. Eieren en melkproducten zijn toegestaan.
Je wijdt je helemaal aan het spirituele leven. Je wordt bijvoorbeeld een sjamaan, een yogi of een ingewijde in de Cirkel van Licht en Liefde.
Aura- en chakra- reiniging met sjamanistisch ritueel
Persoonlijke opleiding of opleiding voor een groep
Ik kan je persoonlijk opleiden en inwijden tot hoge priester(es) van de Cirkel van Licht en Liefde.
Als je een spirituele groep hebt of wilt beginnen, kan ik jullie als groep opleiden en inwijden.
Als hoge priester(es) kun je zelf een cirkel beginnen
en mensen inwijden in je eigen cirkel.
Leer met je chakra's te genezen
spirituele marketing, verdien meer geld met gebruik van je paranormale gaven
Beroepsgerichte opleidingen
Opleiding tot RaSaTa yoga instructeur
Algemene informatie over opleidingen en workshops
Deze site werkt veel beter als u javascript activeert.
Deze site werkt veel beter als u cookies activeert.
Deze site werkt veel beter als u cookies activeert.