function PT_ToolTip() { this.ptToolTipBox = document.createElement("div"); this.id = "ptToolTip"; this.ptToolTipBox.style.position = "absolute"; this.ptToolTipBox.style.visibility = "hidden"; this.ptToolTipBox.className = "ptToolTipBox"; this.ptToolTipText = document.createElement("div"); this.ptToolTipText.style.position = "relative"; this.ptToolTipText.className = "ptToolTipText"; this.ptToolTipBox.appendChild(this.ptToolTipText); this.msgs = new Object(); } function PT_ToolTipShowMsg(tsn, e) { var msg = this.msgs['msg'+tsn]; if (msg) { this.ptShowTip(msg, e); } } function PT_ToolTipShow(msg, e) { var posx = 0; var posy = 0; if(e == null) { e = window.event; } if(e.pageX || e.pageY) { posx = e.pageX; posy = e.pageY; } else if(e.clientX || e.clientY) { if(document.documentElement.scrollTop) { posx = e.clientX+document.documentElement.scrollLeft; posy = e.clientY+document.documentElement.scrollTop; } else { posx = e.clientX+document.body.scrollLeft; posy = e.clientY+document.body.scrollTop; } } this.ptToolTipText.innerHTML = msg; this.ptToolTipBox.style.top = posy + 10 + "px"; this.ptToolTipBox.style.left = posx + 10 + "px"; this.ptToolTipBox.style.visibility = "visible"; if(this.ptToolTipBox.parentNode != document.body) { document.getElementsByTagName("body")[0].appendChild(this.ptToolTipBox); } } function PT_ToolTipHide() { this.ptToolTipBox.style.visibility = "hidden"; } PT_ToolTip.prototype = new Object(); PT_ToolTip.prototype.ptHideTip = PT_ToolTipHide; PT_ToolTip.prototype.ptShowTip = PT_ToolTipShow; PT_ToolTip.prototype.ptShowTipMsg = PT_ToolTipShowMsg; var awTopMessageTip = new PT_ToolTip(); awTopMessageTip.msgs['msg'+ 66] = 'As long as we believe something we don\'t know. As long as we don\'t know we idolize and hypothesize, hope, fear etc. Once you experience THAT Hug - you will no longer believe, you will know for sure.'; awTopMessageTip.msgs['msg'+ 65] = 'Amma is REALITY in showing us to eradicate poverty which is created by abundant idolization of the industrialized nations. Every saint works to eradicate poverty...\"For the Love of God\" does not mean they have to earn it - it means they HAVE so much they give it away - for free - no attraction...'; awTopMessageTip.msgs['msg'+ 64] = 'I received my first hug from Amma last year and the experience without doubt changed my life. I will be one of the thousands standing patiently in line to receive her blessing again this year when she travels to the US.'; var PTAWContent = "
"; PT_WIDGET_MAN.SetContent('PTWidget0', PTAWContent);