/* Prototype JavaScript framework * (c) 2005 Sam Stephenson * Prototype is freely distributable under the terms of an MIT-style license. * For details, see the Prototype web site: http://prototype.conio.net/ /*--------------------------------------------------------------------------*/ //note: modified & stripped down version of prototype, to be used with moo.fx by mad4milk (http://moofx.mad4milk.net). if(!Class) var Class = {}; if(!Class.create){ Class.create = function() { return function() { this.initialize.apply(this, arguments); } } } if(!Object.extend){ Object.extend = function(destination, source) { for (property in source) destination[property] = source[property]; return destination; } } if(!Function.prototype.bind){ Function.prototype.bind = function(object) { var __method = this; return function() { return __method.apply(object, arguments); } } } if(!Function.prototype.bindAsEventListener){ Function.prototype.bindAsEventListener = function(object) { var __method = this; return function(event) { __method.call(object, event || window.event); } } } if(typeof($) == 'undefined'){ var $ = function() { if (arguments.length == 1) return get$(arguments[0]); var elements = []; $c(arguments).each(function(el){ elements.push(get$(el)); }); return elements; function get$(el){ if (typeof el == 'string') el = document.getElementById(el); return el; } } } if (!Element) { var Element = {}; } if(!Element.hasClassName){ Object.extend(Element, { remove: function(element) { element = $(element); element.parentNode.removeChild(element); }, hasClassName: function(element, className) { element = $(element); if (!element) return; var hasClass = false; element.className.split(' ').each(function(cn){ if (cn == className) hasClass = true; }); return hasClass; }, addClassName: function(element, className) { element = $(element); Element.removeClassName(element, className); element.className += ' ' + className; }, removeClassName: function(element, className) { element = $(element); if (!element) return; var newClassName = ''; var names = element.className.split(' '); for(var i=0;i 0) newClassName += ' '; newClassName += names[i]; } } element.className = newClassName; }, cleanWhitespace: function(element) { element = $(element); $c(element.childNodes).each(function(node){ if (node.nodeType == 3 && !/\S/.test(node.nodeValue)) Element.remove(node); }); }, find: function(element, what) { element = $(element)[what]; while (element.nodeType != 1) element = element[what]; return element; } }); } Object.extend(Element, { visible: function(element) { return $(element).style.display != 'none'; }, toggle: function() { for (var i = 0; i < arguments.length; i++) { var element = $(arguments[i]); Element[Element.visible(element) ? 'hide' : 'show'](element); } }, hide: function() { for (var i = 0; i < arguments.length; i++) { var element = $(arguments[i]); element.style.display = 'none'; } }, show: function() { for (var i = 0; i < arguments.length; i++) { var element = $(arguments[i]); element.style.display = ''; } } }); var Position = { cumulativeOffset: function(element) { var valueT = 0, valueL = 0; do { valueT += element.offsetTop || 0; valueL += element.offsetLeft || 0; element = element.offsetParent; } while (element); return [valueL, valueT]; } }; if(!document.getElementsByClassName){ document.getElementsByClassName = function(className) { var children = document.getElementsByTagName('*') || document.all; var elements = []; $c(children).each(function(child){ if (Element.hasClassName(child, className)) elements.push(child); }); return elements; } } if(!Array.prototype.each){ Array.prototype.each = function(func){ for(var i=0;ob=this[i];i++) func(ob, i); } } if(typeof($c) == 'undefined'){ var $c = function(array){ var nArray = []; for (i=0;el=array[i];i++) nArray.push(el); return nArray; } } var nullGif = ''; var CommentBox = Class.create(); CommentBox.instances = []; CommentBox.agt = navigator.userAgent.toLowerCase(); CommentBox.ie = (CommentBox.agt.indexOf("msie") != -1); CommentBox.gecko = (CommentBox.agt.indexOf("gecko") != -1); CommentBox.setSelectionText = function(el, str) { var el = $(el); var sr = el.ownerDocument.selection.createRange(); if (!el.contains(sr.parentElement())) return; r = el.createTextRange(); sr.text = str; } CommentBox.getSelectionText = function(el) { var el = $(el); var sr = el.ownerDocument.selection.createRange(); if (!el.contains(sr.parentElement())) return ""; return sr.text; } CommentBox.insertCode = function(el, code) { var msgEl = CommentBox.instances[el].getTextArea(); msgEl.focus(); str = msgEl.value; if (CommentBox.ie) CommentBox.setSelectionText(msgEl, code); else if (CommentBox.gecko) { header = str.substring(0, msgEl.selectionStart); footer = str.substring(msgEl.selectionEnd, str.length); msgEl.value = header + code + footer; msgEl.focus(); msgEl.selectionStart = header.length; msgEl.selectionEnd = msgEl.value.length - footer.length; } } CommentBox.surroundWith = function(el, begin, end) { if (begin.indexOf("null") != -1 || begin == '[url=http://]' || begin=='[url=]') { return false; } else { msgEl = CommentBox.instances[el].getTextArea(); msgEl.focus(); if (CommentBox.ie) { var str = CommentBox.getSelectionText(msgEl); CommentBox.setSelectionText(msgEl, begin + str + end); } else { no_selection = msgEl.selectionStart == msgEl.selectionEnd; var str = msgEl.value; header = str.substring(0, msgEl.selectionStart); sel = str.substring(msgEl.selectionStart, msgEl.selectionEnd); footer = str.substring(msgEl.selectionEnd, str.length); msgEl.value = header + begin + sel + end + footer; if (no_selection) { msgEl.selectionStart = msgEl.value.length - footer.length - end.length; msgEl.selectionEnd = msgEl.value.length - footer.length - end.length; } else { msgEl.selectionStart = header.length + begin.length; msgEl.selectionEnd = msgEl.value.length - footer.length - end.length; } } msgEl.focus(); } return false; } CommentBox.cumulativeOffset = function(el) { function findPosX(obj) { var curleft = 0; if (obj.offsetParent) { while (obj.offsetParent) { curleft += obj.offsetLeft obj = obj.offsetParent; } } else if (obj.x) { curleft += obj.x; } return curleft; } function findPosY(obj) { var curtop = 0; if (obj.offsetParent) { while (obj.offsetParent) { curtop += obj.offsetTop obj = obj.offsetParent; } } else if (obj.y) { curtop += obj.y; } return curtop; } return [findPosX(el), findPosY(el)]; } CommentBox.prototype = { setOptions: function(options) { this.options = { width: 350, height: 275, tab1Label: 'message', tab2Label: 'preview', hideTabs: false, messageLabel: '', previewLabel: '', showActionButtons: false, postAction: '', cancelAction: '', style: false, showEmail: false, showName: false, hidden: false, btn1Label: 'post', btn2Label: 'cancel' } Object.extend(this.options, options || {}); }, initialize: function(pEl, options) { this.setOptions(options); this.activeTab = -1; this.pEl = $(pEl); this.messageTab = pEl + "messageTab"; this.previewTab = pEl + "previewTab"; this.postMessageContent = pEl + "postMessageContent"; this.insertSmilie = pEl + "insertSmilie"; this.editTA = pEl + "editTA"; this.smileDiv = pEl + "smileDiv"; this.previewMessageContent = pEl + "previewMessageContent"; this.previewArea = pEl + "previewArea"; this.messageBoxButtons = pEl + "messageBoxButtons"; this.postProcessing = pEl + "postProcessing"; this.previewFrame = pEl + "previewFrame"; this.nameField = pEl + "nameField"; this.emailField = pEl + "emailField"; this.cbContainer = pEl + "cbContainer"; var w = this.options.width; var h = this.options.height; var p = Math.round(w * 0.02); var sq = !this.options.style ? "": "square-"; var qEl = "'" + pEl + "'"; this.pEl.innerHTML = '' + (!this.options.hideTabs ? ' ': '') + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + '
' + ' ' + this.options.tab1Label + '' + ' ' + this.options.tab2Label + '' + '
':'>') + nullGif + '':'>') + nullGif + '':'>') + nullGif + '
':'>') + '
':'>') + (this.options.showName ? '
':'>') + 'Name:
' + ' ' + '
': '' ) + (this.options.showEmail ? '
':'>') + 'E-mail:
' + ' ' + '
': '' ) + '
':'>') + this.options.messageLabel + '
' + '
' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + // ' ' + // onclick="CommentBox.instances[' + qEl + '].showSmilies(); return false;">' + '
' + nullGif + '
' + ' ' + '
' + '
' + nullGif + '
' + '
' + ' ' + (this.options.showActionButtons ? '
' + '
':'>') + ( !this.options.style ? ' ' + this.options.btn1Label + '' + ' ' + this.options.btn2Label + '' :' ' + ' ' ) + '
': '') + ' ' + '
':'>') +nullGif + '':'>') + nullGif + '':'>') + nullGif + '
'; var d = document.createElement("div"); d.id = this.smileDiv; d.className = "smileContainer"; d.style.display = "none"; d.innerHTML = ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + '
AngryArrowBiggrinBlinkCool
DryHuhLaughMadOh My
Ph34rPukeRoll EyesSadSmile
TongueUnsureWinkExclamationQuestion
'; window.setTimeout(function() { document.body.appendChild(d); }, 1500); this.switchTab(0); CommentBox.instances[pEl] = this; CommentBox.instances.length++; // $(this.insertSmilie).onclick = this.showSmilies.bindAsEventListener(this); }, switchTab: function(tab) { if (this.options.hideTabs || this.activeTab == tab) return; this.activeTab = tab; var sq = !this.options.style ? "": "square-"; var els = [$(this.messageTab), $(this.previewTab), $(this.postMessageContent), $(this.previewMessageContent), $(this.previewFrame)]; if (tab == 0) { with (els[0].style) { backgroundImage = "url(http://images.freewebs.com/Images/CommentBox/" + sq + "message-box-tab-on.gif)"; color = "#ed8f21"; } with (els[1].style) { backgroundImage = "url(http://images.freewebs.com/Images/CommentBox/" + sq + "message-box-tab-off.gif)"; color = "#a6a6a6"; } if (this.options.style) { els[0].childNodes[0].className = "cb-messageBoxTabOnText"; els[1].childNodes[0].className = "cb-messageBoxTabOffText"; els[0].className = "cb-tabOn"; els[1].className = "cb-tabOff"; } els[2].style.display = "block"; els[3].style.display = "none"; } else { with (els[0].style) { backgroundImage = "url(http://images.freewebs.com/Images/CommentBox/" + sq + "message-box-tab-off.gif)"; color = "#a6a6a6"; } with (els[1].style) { backgroundImage = "url(http://images.freewebs.com/Images/CommentBox/" + sq + "message-box-tab-on.gif)"; color = "#ed8f21"; } if (this.options.style) { els[0].childNodes[0].className = "cb-messageBoxTabOffText"; els[1].childNodes[0].className = "cb-messageBoxTabOnText"; els[0].className = "cb-tabOff"; els[1].className = "cb-tabOn"; } els[2].style.display = "none"; els[3].style.display = "block"; var f = document.createElement("form"); f.action = "http://members.freewebs.com/previewBBCode.jsp"; f.method = "POST"; f.target = this.previewFrame; f.innerHTML = ''; document.body.appendChild(f); f.submit(); document.body.removeChild(f); } }, showSmilies: function(e) { var el = $(this.smileDiv); var btnPos = CommentBox.cumulativeOffset($(this.insertSmilie)); el.style.left = (btnPos[0]+10) + 'px'; el.style.top = (btnPos[1]+10) + 'px'; el.style.display = "block"; document.body.onmouseup = this.hideSmilies.bindAsEventListener(this); }, startPostProcessing: function() { $(this.messageBoxButtons).style.display = "none"; $(this.postProcessing).style.display = "block"; }, stopPostProcessing: function() { $(this.messageBoxButtons).style.display = "block"; $(this.postProcessing).style.display = "none"; }, hideSmilies: function(e) { $(this.smileDiv).style.display = 'none'; }, getName: function() { var nf = $(this.nameField); return nf ? nf.value: ''; }, getEmail: function() { var ef = $(this.emailField); return ef ? ef.value: ''; }, getText: function() { return this.getTextArea().value; }, getTextArea: function() { return $(this.editTA); }, getContainer: function() { return $(this.cbContainer); }, setText: function(str) { $(this.editTA).value = str; }, doPost: function() { if (this.options.postAction) this.options.postAction(); }, doCancel: function() { if (this.options.cancelAction) this.options.cancelAction(); } }; var link = document.createElement("link"); link.rel = "stylesheet"; link.type = "text/css"; link.href = "http://images.freewebs.com/Styles/CommentBox.css"; var head = document.getElementsByTagName("head").item(0); if (head) head.appendChild(link); else { var body = document.body; if (body) body.appendChild(link) else alert('(CommentBox.js) Missing head and body from document, can\'t write out stylesheet'); } var currReplyBox = null; var currBox = null; var currReplyVal = ''; var currParentID = 0; function toggleOpenReply(i, path, id) { var rbox; var loginLinks = document.getElementById("loginLinks"); if (i < 0) { rbox = document.getElementById("topCommentBox"); // if (loginLinks != null) loginLinks.style.display = 'none'; } else { rbox = document.getElementById("replyBox" + i); // if (loginLinks != null) loginLinks.style.display = 'block'; } if (rbox == null) return; if (currReplyBox == rbox && currBox != null && currBox.style.display != 'none') { currBox.style.display = 'none'; currReplyBox = null; return; } // document.forms.login.next.value = "http://nikkijourdan.webs.com/wisdomblog.htm?userid=28025311&blogentryid=0&expand=" + i; currBox = document.getElementById("loginBox"); var loginLink = document.getElementById("loginLink"); if (loginLink != null) { loginLink.href = 'http://blogs.members.webs.com/s/login/relogin?next=' + 'http%3A%2F%2Fnikkijourdan.webs.com%2Fwisdomblog.htm%3F%26blogentryid%3D0' + escape('&expand=' + i + '#loginBoxLocation' + i); } if (currReplyBox != null) currBox.style.display = 'none'; rbox.appendChild(currBox); currBox.style.display = 'block'; currReplyBox = rbox; } var str = '' + '' + '
' + //'
An Appointment with Greatness
' + '
An Appointment with Greatness
' + '
Sunday, Nov 9, 2008
' + '
' + '
 
\n
1. Learn to keep quiet and listen in the presence of a proven leader. The best impression is to be the best you with your mind on serving, reaching out and giving back into lives; making a difference. It takes courage to impact lives.
\n
 
\n
Be prepared to give a short and simple \'elevator speech\' of who, what, when, where and why you are in existence. K.I.S.S. = keep it short and simple or short and sweet.
\n
 
\n
2. If you are scheduled to interview a proven leader, read up on their accomplishments. Quote something they love.
\n
 
\n
You are better prepared to ask questions that are meaningful. Save the small talk for later.
\n
 
\n
3. When communicating with a proven leader make she/he is the focus of attention; not you.  Keep business boundaries within a business mind set.
\n
 
\n
Know when it\'s business and when it is not. A friendship may or may not develop afterwards; expect this and do not take it personal.
\n
 
\n
4. When in the company of a proven leader: First things first.  Establish a clear written plan of exactly what is to be expected and what is to be given in exchange for it.
\n
 
\n
Always talk about the bottom line. Be prepared to negotiate and have a back up plan or at least a win/win strategy in place. Have an agenda that is narrow enough to be believed and wide enough to be achieved: cut big profjects into bite size steps of action/ delegate when possible.
\n
 
\n
Now, if you are wondering who the secret wise and savvy leader I am referring to, ha!  She is Madame Founder Yolanda Lamar-Wilder of WEA, INC. [Women Entrepreneurs of America, Inc.]. A 501 (c) (3) Not-For-Profit Organization. I have learn these things by being in her circle.  No matter how you may feel about her, personally. When it comes to doing \"business\"...the woman is at her best! ha! Hands down, ha!
\n
 
\n
Foer more information check out the site: consider giving a generous donation.
\n
\n
Yolanda Lamar
\n
Founder and National Executive Director
\n
Women Entrepreneurs Of America, Inc.
\n\n\n
Travel Agency: www.ytbtravel.com/weainc  
\n
 
\n
  
\n
 
\n
Nikki Jourdan Wisdom Blog
\n
\"The Legacy of Wise & Savvy Kingdom Leaders\"
\n
www.nikkijourdan.webs.com
\n
 
\n
 
\n
 
' + '
' + '
 
' + '
' + ' View comments on this entryview comments (0) ' + ' Post a comment on this entrypost comment ' + ' Permanent link to this entrypermalink' + '
' + '
05:42 PM (UTC -5)
' + '
 
' + '
' + '
' + //'
Stay Encouraged in God
' + '
Stay Encouraged in God
' + '
Saturday, Oct 4, 2008
' + '
' + '

Greetings Wisdom Leaders!

\n

Remember who you are In Christ.

\n

The Kingdom of Heaven is not like that of the world.

\n

Keep your heart and mind stayed on God; in the Word and prayer.

\n

Hold on to what you believe and know to be true, just and fair.

\n

God Calls you: More than a conqueror! A world Overcomer!

\n

And He cannot lie, ha!

\n

Here is what Proverbs 2:1-15 has to say to you this day: (NIV)

\n

1 \"My son, if you accept my words
       and store up my commands within you,

\n

 2 turning your ear to wisdom
       and applying your heart to understanding, \n

 3 and if you call out for insight
       and cry aloud for understanding, \n

 4 and if you look for it as for silver
       and search for it as for hidden treasure, \n

 5 then you will understand the fear of the LORD
       and find the knowledge of God. \n

 6 For the LORD gives wisdom,
       and from his mouth come knowledge and understanding. \n

 7 He holds victory in store for the upright,
       he is a shield to those whose walk is blameless, \n

 8 for he guards the course of the just
       and protects the way of his faithful ones. \n

 9 Then you will understand what is right and just
       and fair—every good path. \n

 10 For wisdom will enter your heart,
       and knowledge will be pleasant to your soul. \n

 11 Discretion will protect you,
       and understanding will guard you. \n

 12 Wisdom will save you from the ways of wicked men,
       from men whose words are perverse, \n

 13 who leave the straight paths
       to walk in dark ways, \n

 14 who delight in doing wrong
       and rejoice in the perverseness of evil, \n

 15 whose paths are crooked
       and who are devious in their ways.\"

\n

You are empowered to love and live in victory (both).

\n

Nikki Jourdan Wisdom Blog

\n

\"Choose Love. It looks good on you.\"(tm)
http://nikkijourdan.com
Click here: Victims Have Purpose in Life
http://www.linkedin.com/in/nikkijourdan

' + '
' + '
 
' + '
' + ' View comments on this entryview comments (1) ' + ' Post a comment on this entrypost comment ' + ' Permanent link to this entrypermalink' + '
' + '
03:24 PM (UTC -4)
' + '
 
' + '
' + '
' + //'
Proverbs 22
' + '
Proverbs 22
' + '
Tuesday, July 22, 2008
' + '
' + '
\n
Greetings Wisdom Leaders!
\n
 
\n
The Word is Alive! Apply it and remain humble.
\n
 
\n
Exhortation!
\n
Proverbs 22:4; 9 (New Living Bible)
\n
4 True humility and fear of the Lord
      lead to riches, honor, and long life.
\n
9 Blessed are those who are generous,
      because they feed the poor.
\n
 
\n
Warning!
\n
Proverbs 22:5  Corrupt people walk a thorny, treacherous road;
      whoever values life will avoid it (stay away).
\n
 
\n
Proverbs:16  A person who gets ahead by oppressing the poor
      or by showering gifts on the rich will end in poverty.
\n
 
\n

With an extraordinary love of God for you,

\n

\"Choose Love. It looks good on you.\"(tm) ~ Nikki Jourdan

\n


Nikki Jourdan Wisdom Blog

\n

http://nikkijourdan.webs.com/wisdomblog.htm

\n

Looking for the perfect Gift? Consider giving eBooks 
http://njourdan.webs.com/ordernjourdanebooks.htm

' + '
' + '
 
' + '
' + ' View comments on this entryview comments (0) ' + ' Post a comment on this entrypost comment ' + ' Permanent link to this entrypermalink' + '
' + '
10:36 AM (UTC -4)
' + '
 
' + '
' + '
' + '
(displaying 1-3)
View archived entriesView Archived Entries (18)' + '
' + ''; document.write(str); function initBlog() { }