<!-- This script and many more are available online from -->
<!-- The JavaScript Source!! http://javascriptsource.com -->

<!-- Begin
var howMany = 36
var quote = new Array(howMany+1)
quote[0]="Look for God in others. God puts us all in each other’s lives to impact one another in some way. ~ Unknown" 
quote[1]="Learn from the mistakes of others. You can’t live long enough to make them all yourself. ~ Unknown"
quote[2]="Who you become depends on what you do for others. ~ Unknown" 
quote[3]="The only way to have a friend is to be one. ~ Ralph Waldo Emerson"
quote[4]="Friendship with oneself is all-important because without it, one cannot be friends with anyone else in the world.~ Eleanor Roosevelt"
quote[5]="Each moment in time we have it all, even when we think we don’t. ~ Melody Beattie, writer/counselor"
quote[6]="It is not easy to find happiness in ourselves, and it is not possible to find it elsewhere. ~ Agnes Reppelier, writer/historian "
quote[7]="Most folks are about as happy as they make up their minds to be. ~ Abraham Lincoln"
quote[8]="We can’t expect to have authentic relationships with others unless we trust ourselves first. ~ Unknown "
quote[9]="In trying to please other people, we lose our hold on our life’s purpose. ~ Epictetus "
quote[10]="Give up the ‘disease to please’! ~ Unknown "
quote[11]="Live with a sense of gratitude. It’s a way to honor your life and the goodness in your life. Focus on the goodness. ~ Unknown"
quote[12]="When people show you who they are, believe them – the first time. ~ Maya Angelou"
quote[13]="Don’t make others color inside the lines of your life. ~ Unknown "
quote[14]="There are 3 things we’re missing when we’re afraid of moving forward – friends, facts and faith. ~ Unknown "
quote[15]="A finished person is a boring person. ~ Unknown "
quote[16]="I dream, therefore I become. ~ Cheryl Grossman "
quote[17]="It is never too late to be what you might have been. ~ George Eliot "
quote[18]="You must do the thing you think you cannot do. ~ Eleanor Roosevelt "
quote[19]="It is not because things are difficult that we do not dare; it is because we do not dare that things are difficult. ~ Seneca "
quote[20]="Your inner ally will quiet your inner critic. ~ Cheryl Richardson "
quote[21]="What you remove from your life is far more important than what you add. ~ Cheryl Richardson "
quote[23]="Pass up good for great! ~ Cheryl Richardson"
quote[24]="All healing is self-healing. ~ Albert Schweitzer"
quote[25]="Find out who you are, and do it on purpose. ~ Dolly Parton"
quote[26]="If you spot it, you got it! ~ Unknown"
quote[27]="Stress is an ignorant state. It believes that everything is an emergency. Nothing is that important. ~ Natalie Goldberg"
quote[28]="Nothing can bring you peace but yourself. ~ Ralph Waldo Emerson"
quote[29]="An eye for an eye leaves the world blind. ~ Gandhi"
quote[30]="If all you have is a hammer, everything looks like a nail. ~ Abraham Maslow"
quote[31]="What you can't be with won't let you be. ~ Bill Spinoza"
quote[32]="Live life like you mean it. ~ Unknown"
quote[33]="When you point your finger at someone, there are always three fingers pointing back at you. ~ Buddhist wisdom"
quote[34]="If you ask me what I came to do in this world...I am here to live out loud. ~ Emile Zola"
quote[35]="If grass can grow through cement, love can find you at every time in your life. ~ Cher"
quote[36]="There is no wisdom without love. ~ N. Sri Ram, author"

function rndnumber(){
var randscript = -1
while (randscript < 0 || randscript > howMany || isNaN(randscript)){
randscript = parseInt(Math.random()*(howMany+1))
}
return randscript
}
quo = rndnumber()
quox = quote[quo]
document.write(quox)
// End -->

<!--

     if (window != top) top.location.href = location.href;

     // -->

<!-- Activate Cloaking Device


function addplus(items) 
   {

   var plussed = "";

   for (var t = 1 ; t <= items.length ; t++) 

      {

      if (items.substring(t-1,t) == " ") 

         {  plussed+="+";  }

      else 

         { plussed+=items.substring(t-1,t); }

      }

   return plussed;

   }



//    Do the Search

function doSearch() 

   {

   var words;

   words = document.searchforit.query.value;

   var searchitems;

   searchitems=addplus(words);

   var index;

   //  Obtain the selectedIndex properties from the search engines options for 

   index = document.searchforit.service.selectedIndex;

   if (index>=1)

      {

      var site;

      site = document.searchforit.service.options[index].value;

      site+=searchitems;

      if (notEmpty(searchitems))   

         {

         //window.open("","mainWin");

         //window.open(site,"mainWin");

         window.location=site;

         }

      }

   else

      {alert("\nYou must select a search engine.");}

   }



//     Check for empty contents in search searchitems

function notEmpty(word) 

   {

   if (word == "" || word == null) 

      {

      self.status="ENTER SEARCH searchitems";

      alert("\nYou must enter a keyword to search for."); 

      document.searchforit.query.focus();  

      return false;

      }

   else 

      {

      self.status = "SEARCHING FOR:  " + word;

      return true;

      }

   }



function howTo()

   {

   alert("\nWelcome to VirtualPROMOTE's JavaScript Search Engine\n\nSimply choose a search engine from the drop-down menu, enter the keyword to search for, and click on SEARCH.\n\nSeperate multiple keywords with \'and\'.");

   }



function clearIt()

   {

   document.searchforit.query.value="";

   document.searchforit.query.focus();     

   }



// Deactivate Cloaking -->