// ==============================================
// Copyright 2004 by CodeLifter.com
// Free for all; but please leave in this header.
// ==============================================

var Quotation=new Array() // do not change this!

// Set up the quotations to be shown, below.
// To add more quotations, continue with the
// pattern, adding to the array.  Remember
// to increment the Quotation[x] index!

Quotation[0] = "Create your own Self-extracting - Self-installing Package with the XP Wizard. Go to Windows > system32 > iexpress.exe and launch it.";
Quotation[1] = "Hold down the <b>'Ctrl'</b> key and press the <b>'Esc'</b> key to open the 'Start' menu.";
Quotation[2] = "In most Windows applications you have an 'OOPS' key. Hold down the <b>'Alt'</b> key and press the <b>'z'</b> key to <b>undo</b> your last action.";
Quotation[3] = "Hold down the <b>'Shift'</b> key and press the <b>'Tab'</b> key to move backwards through tabs.";
Quotation[4] = "To quickly select a word in most Window programs, simply position the cursor on the word and 'double-click' the left mouse button. To expand the selection for an adjoining word, hold down the <b>'Shift'</b> key and left click on the adjoining word to include it.";
Quotation[5] = "Hold down the <b>'Windows'</b> key and press the <b>'D'</b> key to show the desktop.";
Quotation[6] = "Hold down the <b>'Ctrl'</b> key and press the <b>'A'</b> key to select everything within an element.";
Quotation[7] = "Pressing the <b>'Home'</b> key will take you to the front of the text line. Pressing the <b>'End'</b> key will take you to the end of the text line. Holding down the <b>'Ctrl'</b> key then pressing either key will take you to the top of the page or the end of the page.";
Quotation[8] = "Hold down the <b>'Ctrl'</b> key and press the <b>'Esc'</b> key to open the 'Start' menu.";
Quotation[9] = "Hold down the <b>'Alt'</b>  key and press the <b>'c'</b> key to copy selected information to the clipboard.";
Quotation[10] = "Hold down the <b>'Alt'</b>  key and press the <b>'x'</b> key to copy selected information to the clipboard and cut it from the page.";
Quotation[11] = "Hold down the <b>'Alt'</b>  key and press the <b>'v'</b> key to paste copied contents from the clipboard to the page at the insertion point.";
Quotation[12] = "Hold down the <b>'Windows'</b> key and press the <b>'Break'</b> key to display the System Properties dialog box.";
Quotation[13] = "Hold down the <b>'Alt'</b> key and press the <b>'Tab'</b> key to switch between open windows.";
Quotation[14] = "Hold down the <b>'Shift'</b> key and press the <b>'Delete'</b> key to delete selected item permanently without placing the item in the Recycle Bin.";
Quotation[15] = "To prevent a CD from autoplaying when inserted into the drive, hold down the <b>'Shift'</b> key while the CD loads.";
Quotation[16] = "Need an auto updating log file? Open 'Notepad' in Windows. On the first line type .LOG in all caps. Then 'Save' the file. Now every time you open the file the date and time will automatically be in the log and the cursor will be at the bottom ready to go. Each time you open file, the next entry point will be ready at the bottom of the file.";
Quotation[17] = "To get more precise highlighting of characters in Windows, click at the start of where you want to select. Then hold down the <b>'Shift'</b> key and use the <b>Right Arrow</b> directional key to complete your selection.";

// ======================================
// Do not change anything below this line
// ======================================
var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}

document.writeln('<TABLE BORDER=2 WIDTH=250><TR><TD>');
document.writeln('<h3>Windows Tips</h3><br>');
showQuotation();
document.writeln('</TD></TR></TABLE>');

