In Search of The Eleventh Insight
In this inspiring, exciting spiritual adventure set in Tibet, James Redfield, author of the phenomenal international bestseller, The Celestine Prophecy, takes us in search of the Eleventh Insight.
Description: In the remote snow-covered mountains near Tibet lies a community long thought to be a mere myth called Shambhala, or Shangri-La. Here, in this place, is knowledge that has been kept hidden for centuries, and an insight that can have a profound impact on the way each of us lives our lives.
Your search for Shambhala begins with the words of a child and the vision of an old friend. Those slender clues and a powerful synchronicity will lead to Kathmandu, Nepal, and then to Lhasa, Tibet. Amid blowing snows and perilous mountains, you will meet the members of the secret Tibetan sect that guards mysterious legends - the verbal instructions handed down for centuries that describe the inner changes one must undergo before entering Shambhala.
Finally, with Chinese Agents in pursuit, you will pass through regions where anger and compassion struggle for ascendancy, and arrive at a place where the stunning reality about human prayer-energy - our underdeveloped ability to increase the synchronicity in our lives and influence what will happen to us in the future - is revealed. Like James Redfield's other books, The Secret of Shambhala has a parable effect.
Expand Your Universe
In Search of The Eleventh Insight.
type="text/javascript">
function registerNamespace(ns)
{
var parts = ns.split(".");
var root = window;
for(var i = 0; i < parts.length; i++)
{
if(!root[parts[i]])
{
root[parts[i]] = new Object();
}
root = root[parts[i]];
}
}
registerNamespace('Associates.Util');
Associates.Util.getElementsByTagAndClass = function(tag, class_name, parent_element)
{
if(!parent_element){ parent_element = document; }
var tags = parent_element.getElementsByTagName(tag);
var class_tags = new Array();
var class_regex = new RegExp("\\b" + class_name + "\\b");
for (var i = 0; i < tags.length; i++)
{
if(tags[i].className.match(class_regex))
{
class_tags.push(tags[i]);
}
}
return class_tags;
}
Associates.Util.findAncestor = function(child, test)
{
var test_func;
if(typeof test == 'object')
{
test_func = function(obj){ return obj == test };
}
else if (typeof test == 'string')
{
test_func = function(obj){ return obj.nodeName == test };
}
else
{
test_func = test;
}
while(child && !test_func(child))
{
child = child.parentNode;
}
return child;
}
function AttachEventListener(object, event, handler, useCapture)
{
if( !useCapture )
{
useCapture = false;
}
if( object.addEventListener )
{
object.addEventListener(event, handler, useCapture);
}
else
{
object.attachEvent('on' + event, handler);
}
}
registerNamespace('Assoc.DOMEvent');
Assoc.DOMEvent.AddHandler = function(object, event, handler, context)
{
var event_handler;
if(context)
event_handler = function(event){ handler.call(context, event) };
else
event_handler = handler;
AttachEventListener(object, event, event_handler);
}
function GetEventTarget(event)
{
return (event.target)? event.target : event.srcElement;
}
//borrowed from quirksmode. Stops event bubbling.
function StopEventPropagation(event)
{
if(!event) { event = window.event; }
//MSIE
event.cancelBubble = true;
//w3c
if(event.stopPropagation) { event.stopPropagation(); }
}
function StopEventDefault(event)
{
if(!event) { event = window.event; }
//MSIE
event.returnValue = false;
//w3c
if(event.preventDefault) { event.preventDefault() };
}
//does both StopEventPropogation and StopEventDefault
function StopEvent(event)
{
StopEventDefault(event);
StopEventPropagation(event);
}
function mouseOverFromElement(event)
{
return (event.relatedTarget)? event.relatedTarget : event.fromTarget;
}
function mouseOutToElement(event)
{
return (event.relatedTarget)? event.relatedTarget : event.toTarget;
}
var wImages;
var link = document.getElementById('imageViewerLink');
function openImageViewer(event)
{
if (wImages == null || wImages.closed)
{
wImages = window.open(link.rel="nofollow" href, 'ImageView',
'width=625,height=700,scrollbars,resizable');
}
else
{
wImages.location = link.rel="nofollow" href;
}
wImages.focus();
return false;
}
AttachEventListener(link, 'click', openImageViewer);