/* This JavaScript (Random Quotes) developed by Scott Clark
The Source is available at http://www.clarksco.com/blog/
Copyright 2005 Clark Consulting */

var num_of_quotes = 6;
quotes = Math.floor (num_of_quotes * Math.random());

if (quotes==0) {
title="Word and Excel";
body="Creating a Resume - Type Alt + 130 for small é or Alt + 144 for É on the numerical keypad";
}

if (quotes==1) {
title="Word";
body="Quickly select the entire document using Ctrl + A";
}

if (quotes==2) {
title="General";
body="Proofread Proofread and Proofread again";
}

if (quotes==3) {
title="General";
body="Coffee and Keyboards are a bad idea.";
}

if (quotes==4) {
title="Security";
body="Get an antivirus program and update update update";
}

if (quotes==5) {
title="Excel";
body="Want to lose the Formulas when pasting, go to Paste Special and select Values";
}

document.write('<div align=left>');
document.write('<strong>' + title + '</strong><br>');
document.write(''+ body +'');
document.write('</div>');

