<!--
var sentArray = new makeArray(
'&quot;Nothing is more dangerous than an idea, when you only have one.&quot;<pre>\n</pre><b>Alain Chartier</b>',
'&quot;Every new idea is an impossibility until it is born.&quot;<pre>\n</pre><b>Ron Brown</b>',
'&quot;The value of an idea lies in the using of it.&quot;<pre>\n</pre><b>Thomas A. Edison</b>',
'&quot;Ideas not coupled with action never become bigger than the brain cells they occupied.&quot;<pre>\n</pre><b>Arnold H. Glasgow</b>',
'&quot;An idea, to be suggestive, must come to the individual with the force of revelation.&quot;<pre>\n</pre><b>William James</b>',
'&quot;The public interest is best served by the free exchange of ideas.&quot;<pre>\n</pre><b>John Kane</b>',
'&quot;Very simple ideas lie within the reach only of complex minds.&quot;<pre>\n</pre><b>Remy De Gourmont</b>',
'&quot;If you want to kill any idea in the world today, get a committee working on it.&quot;<pre>\n</pre><b>Charles F. Kettering</b>',
'&quot;A new idea is like a child. It&acute;s easier to conceive than to deliver.&quot;<pre>\n</pre><b>John Kane</b>',
'&quot;An idea is not responsible for the people who believe in it.&quot;<pre>\n</pre><b>Don Marquis</b>',
'&quot;The best way to have a good idea is to have a lot of ideas.&quot;<pre>\n</pre><b>Linus Pauling</b>',
'&quot;Many ideas are good for a limited time -- not forever.&quot;<pre>\n</pre><b>Robert Townsend</b>',
'&quot;Great people talk about ideas. Small people talk about other people.&quot;<pre>\n</pre><b>Tobias S. Gibson</b>');

function makeArray(){
this.length = makeArray.arguments.length
for (var i = 0; i < this.length; i++)
this[i + 1] = makeArray.arguments[i]
}

function randNum (num) {
var now = new Date();
var rand = Math.round(num * Math.cos(now.getTime()));
if (rand < 0) rand = - rand; if (rand == 0) rand++;
return rand;
}
//	-->
