<!--
  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
"Quick Shutdown",
//2
"Quick Restart",
//3
"What's Running?",
//4
"Startup Disk",
//5
"Taskbar Alternative"
);

//tip content
var tip = new initArray(
//1
"To create a quick Windows shutdown shortcut, right-click the desktop and choose <SPAN CLASS='tbold'>New</SPAN>, <SPAN CLASS='tbold'>Shortcut</SPAN>. Then type c:&#92windows&#92rundll.exe<BR>user.exe,<BR>exitwindows (your path to Windows may be different), click <SPAN CLASS='tbold'>Next</SPAN>, type a name for the shortcut, and click <SPAN CLASS='tbold'>Finish</SPAN>. Double-click this icon anytime to exit Windows.<BR><BR>To create a keyboard shortcut for exiting, right-click the icon, select <SPAN CLASS='tbold'>Properties</SPAN> from the menu, click the <SPAN CLASS='tbold'>Shortcut tab</SPAN>, and click in the <SPAN CLASS='tbold'>Shortcut key</SPAN> box. Press the keys you want to use to activate your shutdown shortcut (they must begin with Ctrl-Alt, Ctrl-Shift, or Shift-Alt).",
//2
"To create a quick Windows shutdown shortcut, right-click the desktop and choose <SPAN CLASS='tbold'>New</SPAN>, <SPAN CLASS='tbold'>Shortcut</SPAN>. Then type c:&#92windows&#92rundll.exe<BR>user.exe,<BR>exitwindowsexec (your path to Windows may be different), click <SPAN CLASS='tbold'>Next</SPAN>, type a name for the shortcut, and click <SPAN CLASS='tbold'>Finish</SPAN>. Double-click this icon anytime to restart Windows.",
//3
"To take a look at what is currently running on your computer, hit the <SPAN CLASS='tbold'>CTRL</SPAN>, <SPAN CLASS='tbold'>ALT</SPAN>, <SPAN CLASS='tbold'>DELETE</SPAN> keys <SPAN CLASS='tbold'>once</SPAN> all at the same time. The <SPAN CLASS='tbold'>Windows Task List</SPAN> will appear and you can check out was is running. Click <SPAN CLASS='tbold'>Cancel</SPAN> to close the <SPAN CLASS='tbold'>Windows Task List</SPAN>.",
//4
"If you don't have a Windows startup disk, you need to make one; just in case. You will need a blank, formatted disk or a disk that contains some old, useless files which you can write over.<BR>Open the <SPAN CLASS='tbold'>Control Panel</SPAN> (select <SPAN CLASS='tbold'>Start</SPAN>, <SPAN CLASS='tbold'>Settings</SPAN>, <SPAN CLASS='tbold'>Control Panel</SPAN>) and double-click <SPAN CLASS='tbold'>Add/Remove Programs</SPAN>. Select the <SPAN CLASS='tbold'>Startup Disk</SPAN> tab, then click the <SPAN CLASS='tbold'>Create Disk</SPAN> button. Now just follow along as Windows walks you through the disk creation process. When it finishes, be sure to label the disk and keep it in a safe place. You might also switch that little plastic tab on the back of the floppy disk to the down position—you’ll be able to see through the disk—to write-protect it.",
//5
"The taskbar is probably the most obvious means of switching among active tasks in Windows. However, you can also use the <SPAN CLASS='tbold'>[Alt][Tab]</SPAN> keystroke. When you hold down the <SPAN CLASS='tbold'>[Alt]</SPAN> key and press <SPAN CLASS='tbold'>[Tab]</SPAN>, you’ll see the selector box, which shows an icon for each program that’s currently open, including minimized programs. A square outline around an icon indicates that the corresponding program will become active when you release the <SPAN CLASS='tbold'>[Alt]</SPAN> key.<BR><BR>To switch to the next open program in the sequence, you simply press the <SPAN CLASS='tbold'>[Tab]</SPAN> key while continuing to hold down the <SPAN CLASS='tbold'>[Alt]</SPAN> key. To reverse the sequence, hold down <SPAN CLASS='tbold'>[Shift]</SPAN> and <SPAN CLASS='tbold'>[Alt]</SPAN> as you press <SPAN CLASS='tbold'>[Tab]</SPAN>.");

//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-->
