var currentmsg=0
var MsgTime=8000
var MsgEndTime=8000
function initArray(n){this.length=n;for(var i=1;i<=n;i++){this[i]=' '}}
msg=new initArray(7)
msg[0]="Tips: instead of scrolling, hit spacebar to view next screen of content"
msg[1]="Tips: increasing your browser viewing area - hit F11. Repeat to restore toolbar."
msg[2]="Thanks for visiting. Please return - make a bookmark CTRL + D"
msg[3]="Please make IE Day widely known: link to this page; use our press releases"
msg[4]="Tips: green underlined links are offsite links, usually opening in a removable frame"
msg[5]="Tips: text too small? Resize with CTRL + mousewheel (NOT in IE7+) (or View > Text Size)"
msg[6]="Double-click any word for dictionary look-up in many languages"
msg[7]="Or use our dictionary interface - click on the animated flag graphic on every page"
function msgrotator(){window.status=msg[currentmsg]
if(currentmsg>msg.length- 1){currentmsg=0
setTimeout("msgrotator()",MsgEndTime)}
else{currentmsg=currentmsg+ 1
setTimeout("msgrotator()",MsgTime)}}
msgrotator();
