//menu objects

function onLoad() 
{
    window.onResize = onLoad;
	loadMenus();
}

function loadMenus () 
{
    window.ToolsMenu = new Menu("ToolsMenu");

    ToolsMenu.addMenuItem("Bandwidth Speed Test", "top.window.location='http://msn.zdnet.com/partners/msn/bandwidth/speedtest500.htm'");
    ToolsMenu.addMenuItem("DCDiag", "top.window.location='http://support.microsoft.com/default.aspx?scid=kb;EN-US;q265706'");
    ToolsMenu.addMenuItem("LAN Management Consulting", "top.window.location='http://www.lanmgt.net'");
    ToolsMenu.addMenuItem("Microsoft","top.window.location='http://support.microsoft.com/default.aspx?scid=fh;EN-US;KBHOWTO'");
    ToolsMenu.addMenuItem("Internet Map", "top.window.location='http://www.switchboard.com/bin/cgidir.dll?LNK=3:158&PR=106&MEM=1'");
    ToolsMenu.addMenuItem("Mail Relay Testing", "top.window.location='http://www.abuse.net/relay.html'");
    ToolsMenu.addMenuItem("Win2000 Step by Step", "top.window.location='http://www.microsoft.com/windows2000/techinfo/planning/walkthroughs/default.asp'");
    ToolsMenu.addMenuItem("Indianapolis Weather", "top.window.location='http://weather.yahoo.com/forecast/USIN0305_f.html'");
    ToolsMenu.addMenuItem("Windows SMTP Service", "top.window.location='http://www.microsoft.com/mind/1299/smtp2000/smtp2000.asp'");
    ToolsMenu.addMenuItem("SPAM Tools", "top.window.location='http://www.declude.com/tools/index.html'");
	ToolsMenu.addMenuItem("15 Seconds Active Server Site", "top.window.location='http://www.15seconds.com/tool/default.htm'");

//   ToolsMenu.addMenuItem(" ", "top.window.location=' '");


    ToolsMenu.menuHiliteBgColor = "Blue";
    ToolsMenu.writeMenus();
}
