//AniMenu

function AniMenu_DoFSCommand(command, args){
if (command == "status") window.status = args;
else if (command == "satellite" && window.document.Satellite) window.document.Satellite.SetVariable("item", args);
}// --></SCRIPT> <SCRIPT LANGUAGE="VBScript"><!--
on error resume next
Sub AniMenu_FSCommand(ByVal command, ByVal args) call AniMenu_DoFSCommand(command, args)
end sub

//New Window Script

function NewWindow(mypage, myname, w, h, scroll, resize) {
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable=resize,location=yes'
win = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}