//Tip of the Day script

var today=new Date()
var dayOfWeek=today.getDay()

var dailyTips=new Array()

//Array below holds the seven possible tips of the week
dailyTips[0]='You should change your password regularly. Ensure it is not easy to guess and use a mixture of letters, numbers and special characters.'
dailyTips[1]='If your computer takes a long time to boot, then it may be time for an upgrade. However, some careful tuning could be all that is needed.'
dailyTips[2]='If you need to use a lot of different programs at the same time (for example a word processor, database and graphics editor) then your computer needs to have lots of memory. This allows it to keep data ready for access at short notice.'
dailyTips[3]='When you are working on something important (like a year-end report), it is a good idea to save your work frequently just in case the computer crashes. Most programs have an auto-save feature to do this for you at regular intervals.'
dailyTips[4]='Large files like digital photos, music downloads and video clips can rapidly consume valuable disk space and slow down your computer. Moving such files onto an external hard drive will both free up disk space and speed up your computer.'
dailyTips[5]='It is sensible to be a bit cautious when surfing the web. Installing a comprehensive security package that includes anti-virus, firewall and e-mail scanning is the best way to avoid problems.'
dailyTips[6]='It is important to backup your data. Ideally this should consist of two copies, one stored on-site and another stored off-site.'

document.write(dailyTips[dayOfWeek])
