<!-- Begin
//   ##############  SIMPLE  BROWSER SNIFFER
if (document.layers) {navigator.family = "nn4"}
if (document.all) {navigator.family = "ie4"}
if (window.navigator.userAgent.toLowerCase().match("gecko")) {navigator.family = "gecko"}

//  #########  popup text 
descarray = new Array(
"<font color=lime>Since 1988, <b><i>FINANCIAL CYCLES</i></b> has been widely acclaimed as one of the world's top financial astrology newsletters.",
"<font color=lime>As a trusted advisor to businesses, professionals, traders, and other individuals, Tim Bost is the originator of <i>Practical Spiritual Astrology</i> and <i>Person-Centered Financial Astrology</i>.",
"<font color=lime>Financial astrology brings you cosmic news you can profit from every day. Get the latest updates in stock market astrology and astro-trading.",
"<font color=lime>Do you have questions about how financial astrology works or about how it can enhance your investment results and trading returns?",
"<font color=lime>Tim Bost provides an assortment of written and recorded materials on financial astrology.",
"<font color=lime>The world of financial astrology is growing every day. Link to other important resources in this exciting field.",
"<font color=lime>Tim Bost has more than 35 years of astrological experience. Learn more about Tim.",
"<font color=white>&quot;There is nothing like a ticker tape except a woman&nbsp;&ndash; nothing that promises, hour after hour, day after day, such sudden developments; nothing that disappoints so often or occasionally fulfills with such unbelievable, passionate magnificence.&quot;<br><i>&ndash;&nbsp;Walter K. Gutman</i>",
"<font color=white>&quot;Money frees you from doing things you dislike. Since I dislike doing nearly everything, money is handy.&quot;<br><i>&ndash;&nbsp;Groucho Marx</i>",
"<font color=white>&quot;The whole trick to money is balance. Balance at a thousand a month or balance at a million a month. The great value of that balance is that it underpins the spiritual you and allows the inner beauty and creativity to come out. That is why for most people money is the one lesson&nbsp;&ndash; other than love perhaps&nbsp;&ndash; that we are here to learn.&quot;<br><i>&ndash;&nbsp;Stuart Wilde</i>",
"<font color=white>&quot;It's better to know some of the questions, than all of the answers.&quot;<br><i>&ndash;&nbsp;James Thurber</i>",
"<font color=white>&quot;No man really becomes a fool until he stops asking questions.&quot;<br><i>&ndash;&nbsp;Charles Steinmetz</i>",
"<font color=white>&quot;The scientist is not a person who gives the right answers, he is one who asks the right questions.&quot;<br><i>&ndash;&nbsp;Claude Levi-Strauss</i>",
"<font color=white>&quot;We are not physical beings who may have a spiritual experience; we are spiritual beings having a physical experience.&quot;<br><i>&ndash;&nbsp;Pierre Teilhard de Chardin</i>",
"<font color=white>&quot;What I need is someone who will make me do what I can.&quot;<br><i>&ndash;&nbsp;Ralph Waldo Emerson</i>",
"<font color=white>&quot;What you can do, or dream you can do, begin it; boldness has genius, power and magic in it.&quot;<br><i>&ndash;&nbsp;Johann Wolfgang von Goethe</i>",
"<font color=white>&quot;A room without books is like a body without a soul.&quot;<br><i>&ndash;&nbsp;Marcus Tullius Cicero</i>",
"<font color=white>&quot;Man's mind, once stretched by a new idea, never regains its original dimensions.&quot;<br><i>&ndash;&nbsp;Oliver Wendell Holmes</i>",
"<font color=white>&quot;Investors operate with limited funds and limited intelligence, they don’t need to know everything. As long as they understand something better than others, they have an edge.&quot;<br><i>&ndash;&nbsp;George Soros</i>",
"<font color=white>&quot;Life has the capacity to give you, in your career or business, and especially in your personal life, everything you ever want and then some. Multiples of that, in fact. But you can't have any of it if you don't know where you are going. And what you want out of the experience.&quot;<br><i>&ndash;&nbsp;Jay Abraham</i>",
"<font color=white>&quot;Laughter is the shortest distance between two people.&quot;<br><i>&ndash;&nbsp;Victor Borge</i>",
"<font color=white>&quot;The art of being wise is the art of knowing what to overlook.&quot;<br><i>&ndash;&nbsp;William James</i>",
"<font color=white>&quot;It's a funny thing about life; if you refuse to accept anything but the best, you very often get it.&quot;<br><i>&ndash;&nbsp;W. Somerset Maugham</i>",
"<font color=white>&quot;From what we get, we can make a living; what we give, however, makes a life.&quot;<br><i>&ndash;&nbsp;Arthur Ashe</i>",
"<font color=white>&quot;I believe in the stars, I believe in astrology, and I have figured out my destiny. The Bible makes it plain that the stars do rule.&quot;<br><i>&ndash;&nbsp;W. D. Gann</i>",
"<font color=red>NEXT AVAILABLE ENTRY",
"These popups can have varying width. It is dependent upon the text message.",
"You can have <b>two</b> lines <br>and HTML content.",
"You can also have images in here like this:<br><img src=greenbar.gif>",
"You can put in a really long <br>description if it is nessary to <br>explain something in detail, <br>like a warning about content <br>or privacy.",
"</center>Lastly, you can have links like these:<br><a href='http://javascript.internet.com/'>JavaScript Source</a><br><a href='http://javascript.internet.com/'>JavaScript Source</a><br><a href='http://javascript.internet.com/'>JavaScript Source</a><br>With a change in the onmouseout event handler."
);

overdiv="0";
//  #########  CREATES POP UP BOXES 
function popLayer(a,xx,yy){
if(!descarray[a]){descarray[a]="<font color=red>This popup (#"+a+") isn't setup correctly - needs description</font>";}
if (navigator.family == "gecko") {pad="0"; bord="1 bordercolor=black";}
else {pad="1"; bord="0";}
desc = 	  "<table cellspacing=0 cellpadding="+pad+" border="+bord+"><tr><td>\n"
	+"<table cellspacing=0 cellpadding=3 border=1 bgcolor=black width=250><tr><td><center><font size=2>\n"
	+descarray[a]
	+"\n</td></tr></table>\n"
	+"</td></tr></table>";
if(navigator.family =="nn4") {
	document.object1.document.write(desc);
	document.object1.document.close();
	document.object1.left=x+15+xx;
	document.object1.top=y-5+yy;
	}
else if(navigator.family =="ie4"){
	object1.innerHTML=desc;
	object1.style.pixelLeft=x+15+xx;
	object1.style.pixelTop=y-5+yy;
	}
else if(navigator.family =="gecko"){
	document.getElementById("object1").innerHTML=desc;
	document.getElementById("object1").style.left=x+15+xx;
	document.getElementById("object1").style.top=y-5+yy;
	}
}
function hideLayer(){
if (overdiv == "0") {
	if(navigator.family =="nn4") {eval(document.object1.top="-500");}
	else if(navigator.family =="ie4"){object1.innerHTML="";}
	else if(navigator.family =="gecko") {document.getElementById("object1").style.top="-500";}
	}
}

//  ########  TRACKS MOUSE POSITION FOR POPUP PLACEMENT
var isNav = (navigator.appName.indexOf("Netscape") !=-1);
function handlerMM(e){
x = (isNav) ? e.pageX : event.clientX + document.body.scrollLeft;
y = (isNav) ? e.pageY : event.clientY + document.body.scrollTop;
}
if (isNav){document.captureEvents(Event.MOUSEMOVE);}
document.onmousemove = handlerMM;
//  End -->
