var theTips = new Array()
theTips.push("Do you need more room on your screen for certain games even though you have the window maximized? If you use Internet Explorer, just hit F11. This will make the window full screen! When you want to go back to a normal window, just hit F11 again.");
theTips.push("If you want to make sure that the page that you are viewing on your browser is the newest version of the Web page, just hold down the CTRL key and hit F5. This will load the newest version of the page and bypass your cache.");
theTips.push("Have you ever wondered how a Webpage is created? To see what was written to create the page, click on your right mouse button on any Webpage (not over a graphic) and select \"View Source\" from the drop down menu. This will bring up a page with all the code to make the Webpage.");
theTips.push("If you want to save an image on a Web page, just move you mouse pointer over the image, then click on the right mouse button. Select \"Save Picture (or Image) As\". Reminder: almost all images are copyright protected.");
theTips.push("Instead of using the scroll bar on the right to move the page down, just click the space bar or Page Down key on your keyboard! To move the page up, use the Page Up key.");
theTips.push("A neat mouse trick, to open a link on the current page in a new window when surfing the Internet: Place the cursor over the link you want to open in a new window, then right click on your mouse button and select, \"open in new window\" or just type in the letter \"N\".");
theTips.push("To bookmark or add to favorites, just hit the CTRL key and D key simultaneously.");
theTips.push("When using a search engine such as Google, Group your search query to find better results. For example, if you're searching for computer help, you'll find better results if you search for an exact phrase by surrounding it in quotes: \"computer help\".");
theTips.push("When using a search engine such as Google, if a lot of your results have keywords you're not search for use a minus sign. For example, if you're looking for computer help but don't want pages containing Windows type: \"computer help\" - windows.");
theTips.push("Google supports number ranges, for example, if you're searching for computer help between the year 2000 to 2005 you can type: \"Computer help\" 2000..2005.");
theTips.push("Create a PC shortcut key to a favorite web page by creating a shortcut to the web page or URL. Users using Internet Explorer can quickly do this by right clicking on an empty spot of a web page and click \"Create Shortcut\". Once the shortcut has been created locate the shortcut and right click or view the properties of that shortcut. In the shortcut properties assign a new shortcut key and click OK. Now when the shortcut key is pressed the web page will be automatically loaded.");

function makeTip(){
	var tipCount = theTips.length;
	var whatTip = Math.round(Math.random()*tipCount);
	document.write(theTips[whatTip]);
}
