<!--
  function initArray() {  
	this.length = initArray.arguments.length      
	for (var i = 0; i < this.length; i++)      
		this[i+1] = initArray.arguments[i]   
	}   
// tip titles
var tt = new initArray(
//1
"Icon Clutter",
//2
"Move the Taskbar",
//3
"Add Shortcuts",
//4
"Delete a Shortcut",
//5
"Create Desktop Shortcuts"
);

//tip content
var tip = new initArray(
//1
"Having trouble finding the right icon on your desktop? Let's make them smaller and give yourself more room. Right-click on the <SPAN CLASS='tbold'>Desktop</SPAN> and select <SPAN CLASS='tbold'>Properties</SPAN>. Click on the <SPAN CLASS='tbold'>Appearance</SPAN> tab, then the <SPAN CLASS='tbold'>Item</SPAN> drop-down menu. Select <SPAN CLASS='tbold'>Icon</SPAN>, then pick a size of <SPAN CLASS='tbold'>16</SPAN> (the default is 32). Click on <SPAN CLASS='tbold'>OK</SPAN>. This works even better if you make the words under the icons as short as possible. How do I do that? Right-click on the icon name and select <SPAN CLASS='tbold'>Rename</SPAN>.",
//2
"This is a little harder to do in Windows 98 than it was in Windows 95. In Windows 95, you only had to make sure you weren't pointing at a button when you clicked the <SPAN CLASS='tbold'>Taskbar</SPAN> to drag it to a new position. In Windows 98, you also have to avoid the blank areas on a toolbar.<BR><BR>If the <SPAN CLASS='tbold'>Taskbar</SPAN> is crowded with toolbars and application buttons, you may have trouble finding a good spot. On a horizontal <SPAN CLASS='tbold'>Taskbar</SPAN>, one good spot is just to the right of the <SPAN CLASS='tbold'>Start</SPAN> button but to the left of the thin line that indicates the start of a toolbar or application button area. The equivalent spot on a vertical toolbar is just below the <SPAN CLASS='tbold'>Start</SPAN> button but above the thin line. Another good place to grab the <SPAN CLASS='tbold'>Taskbar</SPAN> is any blank area in the <SPAN CLASS='tbold'>System Tray</SPAN>, the part of the Taskbar that includes the clock.",
//3
"In Windows 95, you can add a <SPAN CLASS='tbold'>Shortcut</SPAN> to the first level of the Start menu by dragging a filename to the <SPAN CLASS='tbold'>Start</SPAN> button. You can do the same and much more in Windows 98.<BR><BR>If you drop a filename on the <SPAN CLASS='tbold'>Start</SPAN> button, Windows 98 adds a <SPAN CLASS='tbold'>Shortcut</SPAN> to the top of the <SPAN CLASS='tbold'>Start</SPAN> menu. If you hover the filename over the Start</SPAN> button, however, Windows opens the menu. You can then drag the <SPAN CLASS='tbold'>Shortcut</SPAN> to any position in the top portion of the <SPAN CLASS='tbold'>Start</SPAN> menu, meaning the area above the <SPAN CLASS='tbold'>Programs</SPAN> option. As you drag the <SPAN CLASS='tbold'>Shortcut</SPAN>, Windows displays a moving divider to represent where the Shortcut would appear in the menu if you dropped it.",
//4
"Windows 98 lets you delete items from the <SPAN CLASS='tbold'>Start</SPAN> menu. To delete an item, right-click it and choose <SPAN CLASS='tbold'>Delete</SPAN>. Then answer <SPAN CLASS='tbold'>Yes</SPAN> when Windows asks if you're sure you want to delete that item.",
//5
"Windows 95 had several ways to create a desktop <SPAN CLASS='tbold'>Shortcut</SPAN>, but in each case, you had to have the desktop in view. In Windows 98, this isn't necessary. From a <SPAN CLASS='tbold'>Windows Explorer</SPAN> or <SPAN CLASS='tbold'>My Computer</SPAN> window, for example, simply right-click the filename for which you want to create a <SPAN CLASS='tbold'>Shortcut</SPAN> and choose <SPAN CLASS='tbold'>Send To|Desktop As Shortcut</SPAN>. It's automatic, though you may want to rename the <SPAN CLASS='tbold'>Shortcut</SPAN> later."
);

//add this to tip title
t = "Windows Tip";
//get random number
today=new Date();
jran=today.getTime();
var number = 5;
var rand_num="";
ia=9301;
ic=49297;
im=233280;
jran = (jran*ia+ic) % im;
rand_num = Math.ceil( (jran/(im*1.0)) *number);

   // Tip
document.write("<IMG SRC='./images/tipcaption.gif' WIDTH='130' HEIGHT='19' BORDER='0'><BR>");
document.write("<TABLE WIDTH='130' CELLPADDING='2' CELLSPACING='0' BORDER='0' ALIGN='CENTER' BACKGROUND='./images/goldpt.jpg' BORDERCOLOR='gold'><TR><TD ALIGN='CENTER' VALIGN='TOP'></SPAN><SPAN CLASS='tiptitle'>"+ tt[rand_num] + "</SPAN></TD></TR></TABLE>");
document.write("<TABLE WIDTH='130' CELLPADDING='3' CELLSPACING='0' BORDER='1' ALIGN='CENTER' BACKGROUND='./images/ivorypt.jpg' BORDERCOLOR='gold'><TR><TD CLASS=" + "'tiptext' ALIGN='LEFT'>" + tip[rand_num] + "</TD></TR></TABLE>");

<!--end-->
