//sig.js - write a random line of text from the array thereof
var nS=18;
var s=new Array(nS);
s[0]='Every creator painfully experiences the chasm between his inner vision and its ultimate expression.<br>&mdash;&nbsp;Isaac Bashevis Singer';
s[1]='To do great work a man must be very idle as well as very industrious.<br>&mdash;&nbsp;Samuel Butler';
s[2]='You can never solve a problem on the level on which it was created.<br>&mdash;&nbsp;Albert Einstein';
s[3]='When I am working on a problem I never think about beauty. I only think about how to solve the problem.<br>But when I have finished, if the solution is not beautiful, I know it is wrong.<br>&mdash;&nbsp;R. Buckminster Fuller';
s[4]='Creativity is allowing yourself to make mistakes. Art is knowing which ones to keep.<br>&mdash;&nbsp;Scott Adams';
s[5]='Just as appetite comes by eating, so work brings inspiration, if inspiration is not discernible at the beginning.<br>&mdash;&nbsp;Igor Stravinsky';
s[6]='The function of the imagination is not to make strange things settled so much as to make settled things strange.<br>&mdash;&nbsp;G. K. Chesterton';
s[7]='No, no, you&rsquo;re not thinking, you&rsquo;re just being logical.<br>&mdash;&nbsp;Niels Bohr';
s[8]='The perfection of art is to conceal art.<br>&mdash;&nbsp;Marcus Fabius Quintilianus';
s[9]='Life is very nice, but it lacks form. It&rsquo;s the aim of art to give it some.<br>&mdash;&nbsp;Jean Anouilh';
s[10]='A designer knows he has achieved perfection not when there is nothing left to add,<br>but when there is nothing left to take away.<br>&mdash;&nbsp;Antoine de Saint-Exupery';
s[11]='The average pencil is seven inches long, with just a half-inch eraser&mdash;just incase you thought optimism was dead.<br>&mdash;&nbsp;Robert Brault';
s[12]='The pursuit of truth and beauty is a sphere of activity in which we are permitted to remain children all our lives.<br>&mdash;&nbsp;Albert Einstein';
s[13]='I don&rsquo;t need time, I need a deadline.<br>&mdash;&nbsp;Duke Ellington';
s[14]='I want to stay as close to the edge as I can without going over.<br>Out on the edge you see all kinds of things you can&rsquo;t see from the center.<br>&mdash;&nbsp;Kurt Vonnegut, Jr.';
s[15]='Words ought to be a little wild, for they are the assault of thoughts on the unthinking.<br>&mdash;&nbsp;John Maynard Keynes';
s[16]='One of my greatest pleasures in writing has come from the thought that perhaps my work might annoy someone<br>of comfortably pretentious position. Then comes the saddening realization that such people rarely read.<br>&mdash;&nbsp;John Kenneth Galbraith';
s[17]='Some people think a composer&rsquo;s supposed to please them, but in a way a composer is<br>a chronicler&hellip;He&rsquo;s supposed to report on what he&rsquo;s seen and lived.<br>&mdash;&nbsp;Charles Mingus';
function writeSig(d)
{d.write('<p align="center" style="font-family: Courier, monospace; font-size: small; color: #3333dd;">'+s[parseInt(Math.random()*(nS))]+'</p>')}
