var quotes = 0;
var quoteList = new Array();




function addQuote ( newQuote )
{
	quoteList[ quotes++ ] = newQuote;	
}



function writeQuote ()
{
	var quoteInterval = 1;					// Interval in days between quotes ('7' = 1 week)
	var startDay = new Date(2005, 0, 2 );	// Start day is 2005-January-2 (a Sunday)

	var monthsOfYear = ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"];

	// Calculate number of intervals elapsed since start day
	// If start day is in the future, intervals elapsed = 0
	var nowDay = new Date();
	var interval_ms = quoteInterval * 86400 * 1000;
	var intervalsSinceStart = Math.max( 0, Math.floor( ( nowDay.getTime() - startDay.getTime() ) / interval_ms ) );

	// Write header
	document.write('');
	
	// extract argument: number following leading '?' character, if any
	var argument = parseInt( location.search.substring(1) );
	if ( isNaN(argument) || (argument > intervalsSinceStart) )
		argument = intervalsSinceStart;
	if ( argument < 0 )
		argument = 0;
	
	// If going back in time, write date of the quote
	//var dateOfPrevWeek = new Date( startDay.getTime() + (argument*interval_ms) );
	//if (argument < intervalsSinceStart)
	//	document.writeln( "<i>of " + monthsOfYear[dateOfPrevWeek.getMonth()] + " " + dateOfPrevWeek.getDate() + ", " + dateOfPrevWeek.getFullYear() + ":</i></p>")
	//else
		document.writeln( "</b></p>" );

	// Write quote itself, in italics
	document.write("<p>" + quoteList[ argument % quotes ] + "</p>");
	
	if ( (argument > 0) || (argument < intervalsSinceStart) ) {
		document.write('<p>');
		// If not first quote, write a link to previous quote
		if (argument > 0) {
			document.write( '<a href="index.html?' + (argument-1) + '"><font color=#FFFFFF><span class=whitelink>Previous tip</span></font></a>' );
			if (argument < intervalsSinceStart)
				document.write( '&nbsp;&nbsp;&#x2022;&nbsp;&nbsp;' );
		}
		// If not last quote, write a link to next quote
		if (argument < intervalsSinceStart)
			document.write( '<a href="index.html?' + (argument+1) + '"><font color=#FFFFFF><span class=whitelink>Next tip</span></font></a>' );
		document.write('&nbsp;</p>');
	}
}


// List of quotes to be presented one at a time

addQuote("<span class=cap>E</span>ven if you rarely speak in front of an audience with a microphone in hand, you present yourself every day. Life is a presentation!");

addQuote("<span class=cap>F</span>ind out how your audience will be dressed, and dress one notch above. Give your shoes an extra shine or wear a flower in your lapel.");

addQuote("<span class=cap>G</span>et to the event early so that you can meet your audience ahead of time. This way, you'll have the good feeling of speaking to friends instead of strangers.");

addQuote("<span class=cap>I</span>f you're nervous, remind yourself that your message will help others. That's more important than a few butterflies, isn't it?");

addQuote("<span class=cap>I</span>s it OK to &quot;talk with your hands&quot;? Yes, as long as your hands match your words and help the listener understand your message.");

addQuote("<span class=cap>T</span>o manage nervousness, practice liking and respecting your audience ahead of time. &quot;I like and respect the people I'm about to meet.&quot;");

addQuote("<span class=cap>S</span>tart your presentation with a brief story, a provocative question, or a startling statement. These will capture people's attention.");

addQuote("<span class=cap>W</span>hen an audience member asks a question, repeat it to everyone and respond to everyone. Then thank the person who asked the question. &quot;Thank you for your contribution.&quot;");

addQuote("<span class=cap>A</span>void memorizing and over-rehearsing your presentation. You know what you're talking about! Memorizing can be dangerous. Make a simple outline and speak from the heart.");

addQuote("<span class=cap>E</span>mpty your pockets before you speak. You don't want unsightly and noisy bulges.");

addQuote("<span class=cap>C</span>ontrol how you are introduced. Send your own written introduction ahead of time, and bring an extra copy with you.");

addQuote("<span class=cap>I</span>f you speak in a monotone voice, people's attention will wander. Develop vocal variety — in pitch, pace, volume, and tone.");

addQuote("<span class=cap>E</span>nd on time. Even if you give a great presentation, it will become less and less great, each moment that you keep people overtime.");

addQuote("<span class=cap>I</span>f you ask for questions from the audience, give people time to think before you give up on them (five seconds, at least). Still no questions? Supply one!");

addQuote("<span class=cap>C</span>asual attire is appropriate if your presentation is held at an island resort, but make sure that your outfit is neat, clean, and fits well. You still need to look professional.");

addQuote("<span class=cap>O</span>n the day of your presentation, tell yourself, &quot;I'm good enough, I'm smart enough, and doggone-it — people like me!&quot;");

addQuote("<span class=cap>E</span>ven if you were given a good introduction, you should still refer to your credentials from time to time, so that you are seen as an expert in your field. But be humble, not a braggart.");

addQuote("<span class=cap>C</span>ustomize your presentation. Learn about your audience's special concerns or accomplishments, and refer to them during your presentation.");

addQuote("<span class=cap>S</span>ay what you see. &quot;I see that I've confused some of you. Let me say that another way.&quot; Or, &quot;I see that you agree with what I said. I'm glad!&quot; This shows that you're reading your audience.");

addQuote("<span class=cap>T</span>here's no such thing as a boring topic. But there are bored speakers. Love your topic!");

addQuote("<span class=cap>M</span>atch your energy level to the energy of your audience. Then rev it up.");

addQuote("<span class=cap>I</span>nstead of speaking in generalities, be specific. Give one or two examples for each point you make. Paint pictures in your listeners' minds.");

addQuote("<span class=cap>A</span>fter you say something of particular importance, pause for three or four seconds. This allows your message to sink in. Make eye contact with at least two people while you pause.");

addQuote("<span class=cap>C</span>larify your purpose before you begin. Do you intend to inform, instruct, motivate, or entertain? Your purpose will guide your content and style of delivery.");

addQuote("<span class=cap>B</span>efore you begin to speak, pause, center yourself, and look at people. Think of yourself as a professional driver. A driver doesn't set foot on the board before getting fully present.");

addQuote("<span class=cap>I</span>f your presentation is longer than 20 minutes, give the audience an idea of what to expect. &quot;First I'll talk about the benefits of public speaking, then how to control nervousness, and then we'll do a simple speaking exercise.&quot;");

addQuote("<span class=cap>I</span>f you're giving a power point presentation, dim the lights only slightly. Otherwise, you encourage &quot;nap time.&quot; Avoid turning your back to the audience and reading your material. Boring!");

addQuote("<span class=cap>M</span>ake eye contact with as many people as you can, 2 - 3 seconds per person. Avoid scanning the room. Move randomly from person to person.");

addQuote("<span class=cap>S</span>pare your audience the boredom of being read to. Instead, make your presentation a controlled conversation. Involve people by asking questions.");

addQuote("<span class=cap>Y</span>our audience members will wonder, &quot;What's in it for me?&quot; Tell them how your message will benefit them. They'll be better listeners.");

addQuote("<span class=cap>A</span>llow a ten-minute break every hour. Otherwise, people stop listening and learning.");

addQuote("<span class=cap>I</span>f the event includes a meal, speak only when people have finished eating. This honors them, the food, you, and your message.");

addQuote("<span class=cap>A</span>void canned jokes at the beginning of your presentation. The best humor is spontaneous.");

addQuote("<span class=cap>I</span>f you have handout materials, consider providing them at the end of your talk. Otherwise, people's attention will be divided.");

addQuote("<span class=cap>L</span>earn how to hold the microphone. Hold it six inches away from your face. When you move your head, move the microphone along with it.");

addQuote("<span class=cap>Y</span>our audience will like you more if you share yourself. Tell one or two relevant stories about mistakes you made in your early days before you became an expert. Then, to cement your credibility,  mention a recent success.");

addQuote("<span class=cap>B</span>e the steward of the space. Do all that you can to ensure that your audience is physically, mentally, and emotionally comfortable. People will somehow blame you if they are uncomfortable.");

addQuote("<span class=cap>A</span>fter you speak, be the last person to leave the room. Demonstrate that you are available to your audience.");

addQuote("<span class=cap>T</span>o be trustworthy to your audience, your body language, voice, words, and image must blend harmoniously.");

addQuote("<span class=cap>I</span>llustrate your points with brief stories. Stories draw people in. After telling your story, say, &quot;The point of this story is . . .&quot;");

addQuote("<span class=cap>N</span>ervous? Find the friendliest faces and speak to them. Then venture out to others, and return to those friendly people!");

addQuote("<span class=cap>F</span>eedback is the breakfast of champions. Ask for feedback and say &quot;Thank you&quot; when you get it.");

addQuote("<span class=cap>I</span>f someone asks you a hostile question, repeat it to the group in a neutral tone and respond to the group — not to the hostile person. Then find a sincere way to thank the person who asked the question.");

addQuote("<span class=cap>T</span>o get people on-board, ask a hands-up question that most will respond to. &quot;How many of you must speak to groups from time to time?&quot;");

addQuote("<span class=cap>I</span>f the stated agenda has gone over-time, you will be the hero if you offer to shorten your presentation so that people can leave on time.  No one is likely to know what you omitted from your presentation.");

addQuote("<span class=cap>I</span>f your presentation is on power point, include mostly photos and other images. Avoid saying, &quot;I know you can't read this, but . . .&quot;");

addQuote("<span class=cap>I</span>f someone arrives late to a small group setting, welcome him and say, &quot;We were just talking about . . .&quot; If you ignore a latecomer, he will continue to be a distraction.");

addQuote("<span class=cap>I</span>f people ask too many questions, and you fear that you might not finish on time, say, &quot;I'm glad that you're all so interested! I have time for one more question.&quot;");

addQuote("<span class=cap>T</span>o get people's attention, ask rhetorical questions. &quot;How many of you are nervous about speaking in public? Most of us are!&quot;");

addQuote("<span class=cap>Y</span>our image makes an instant and lasting impression. Be sure that all the details are perfect. Polished shoes, neat collar, emptied pockets, and a sincere smile!");

addQuote("<span class=cap>S</span>peak out at meetings. Even if you're not on the agenda, offer a question or an observation. You will seem confident and leader-like when you participate.");

addQuote("<span class=cap>I</span>f you're speaking to an after-lunch group, think of a way to get people to talk to each other in pairs or small groups. This will boost the energy level and prevent dozing.");

addQuote("<span class=cap>W</span>hen you're finished speaking, don't rush off to the safety of your chair. Pause for a moment, then leave the stage in a dignified manner.");

addQuote("<span class=cap>I</span>f you insist on holding index cards, at least make sure they match your outfit!");

addQuote("<span class=cap>I</span>f you give the same presentation frequently, keep yourself interested by using new (and recent) anecdotes.");

addQuote("<span class=cap>W</span>hen audience members respond to your questions, find something to agree with. Otherwise, they will fall silent.");

addQuote("<span class=cap>I</span>f someone in your audience is an expert in your field, instead of feeling threatened, <u>use</u> that person. &quot;We are fortunate to have So-and-So here today! I'm sure she'll have something to contribute.&quot;");

addQuote("<span class=cap>R</span>elease control. If you realize that you're on the wrong track, ask questions to learn more about your audience, and then adjust your approach.");

addQuote("<span class=cap>I</span>f your mind goes blank, ask for help. &quot;Where was I?&quot; Almost always, someone will prompt you. If no one does, just move on to your next point. (It happens to everyone.)");

addQuote("<span class=cap>I</span>f you want to appear approachable, wear a pastel color near your face. If you want to appear serious, wear &quot;power colors&quot; – black, navy, gray. Add a touch of color with a tie or scarf.");

addQuote("<span class=cap>T</span>he most important quality to exude is likeability. The next most important is credibility.");

addQuote("<span class=cap>T</span>he best speakers speak without notes. If you read your presentation, your credibility will be zero.");

addQuote("<span class=cap>C</span>onfident speakers allow time for questions. People who lack confidence don’t allow time, fearing that they will be caught off-guard.");

addQuote("<span class=cap>Y</span>our audience wants to participate, but won’t unless you let them. Get them involved by asking questions.");

addQuote("<span class=cap>I</span>f you want to stop saying “um” between phrases, get someone to count them, and pay $1.00 per “um.” You’ll quit in no time!");

addQuote("<span class=cap>I</span>nstead of cowering behind the lectern, come out and be visible! You can turn the lectern sideways if you need a place for your outline.");

addQuote("<span class=cap>E</span>nd your presentation with a call for action. Tell people what to do next, so that your presentation has lasting results.");

addQuote("<span class=cap>W</span>hat to wear to an interview? Spy on the employees ahead of time, and dress one notch above.");

addQuote("<span class=cap>A</span>n interview is a presentation. After you sit down, have pen and pad in hand. Some employers hire only people who do this.");

addQuote("<span class=cap>U</span>nless you’re teaching people how to fill out forms, give handouts only at the end of your presentation. Otherwise, people’s attention will be divided.");

addQuote("<span class=cap>R</span>eceive personalized one-on-one coaching from afar. Click a link to find out how!");

addQuote("<span class=cap>F</span>ilm yourself speaking on video and send me a DVD. You can easily fine-tune your presentation by receiving feedback this way.");

addQuote("<span class=cap>O</span>rder my $15.00 eBook, Life is a Presentation. What an inexpensive way to learn! This investment could be worth a promotion, a raise, and more opportunities.");

addQuote("<span class=cap>S</span>peakers who make the most impact do not use only power point or read a script. They speak confidently about a topic they know and love.");

addQuote("<span class=cap>H</span>ow many more people could you help if you could speak to 50 people at a time, instead of having 50 separate meetings?");

addQuote("<span class=cap>A</span> successful presentation is only one attitude away: “My message will help people!”");

addQuote("<span class=cap>I</span>f you insist on holding index cards, at least make sure they match your outfit.");

addQuote("<span class=cap>Y</span>our audience can tell if you’re reciting memorized material. It sounds state. Follow a brief outline, and talk with us!");

addQuote("<span class=cap>K</span>eep people on your side by showing that you’re on their side.");

addQuote("<span class=cap>“T</span>he genius who can’t communicate is at the mercy of the dunce who can.” Anon");

addQuote("<span class=cap>W</span>hen you can capture the attention of a group of teen-agers, you have become a master. Ask me how!");

addQuote("<span class=cap>M</span>en who wear pale pink dress shirts are attractive to women. Only a totally confident man would wear one! Confidence is irresistible.");

addQuote("<span class=cap>W</span>omen notice men’s socks. Wear socks with a subtle conservative pattern. This shows that you take pride in your appearance and care about details.");

addQuote("<span class=cap>W</span>omen should wear solid colors and employ The Power of Three: a skirt, a shirt, a jacket. A dress, a noticeable belt, a scarf. Three distinct elements create a sense of solidity. ");

addQuote("<span class=cap>I</span>f you’re providing a specific number of points, tell the audience how many there will be. This allows people to “reserve” the appropriate space in their minds. “I have 7 points to share. Here is point #1.”");

addQuote("<span class=cap>I</span>f you ask for questions from the audience, wait at least 5 seconds. If you are met with silence, say “A question I’m often asked is . . . ” Then answer it. This will stimulate the group. ");

addQuote("<span class=cap>U</span>se punctuation marks while speaking, just as you do in writing. Question marks, colons, dashes, periods, parentheses, and commas can be heard, and command attention.");

addQuote("<span class=cap>F</span>ollow the 50-minute rule. The ability to absorb information wanes after 50 minutes. Provide a five or ten-minute break every 50 minutes.");

addQuote("<span class=cap>I</span>f you can answer an irrelevant question briefly, do so. Otherwise offer to talk with that person after the presentation. And no fair bolting! You must show that you were sincere.");

addQuote("<span class=cap>S</span>tanding behind a lectern is like standing behind a coffin. It prevents connection with your audience. If you need a place for your notes, turn the lectern sideways and be fully visible.");




// Write selected quote

writeQuote();













































