<!-- Hide the script from old browsers --

function MakeArray()
	{
	this.length = MakeArray.arguments.length
    for (var i = 0; i < this.length; i++)
    this[i+1] = MakeArray.arguments[i]
    }

  var siteopt = new MakeArray("    ---------References---------",
	"Career information",
	"Little Black Book",
	"Relax",
	"Secrets",  
	"    -------Technical Stuff------",
	"IT Tool-Kit",
	"TechNet",
	"Apple GSX",
	"LSA Sites",
	"ITD Services",
	"**SPG online",
	"UNIX Treasures",
	"MacIntosh Goodies",
	"Windows Stuff",
	"Programming",
	"Security",
	"Orders",
	"Computer Hardware",
	"Software",
	"Network (Physical) Information", 
	"Web Tools",
	"General References");

     var url = new MakeArray("",
	"Career.htm",
	"blackbook.html",
	"relax.html",
	"https://personal.www.umich.edu/~rsmoke",
	" ",    
	"http://www.runpcrun.com/free_IT_support_engineers_toolkit",
	"https://technet.microsoft.com/en-us/subscriptions/manage/default.aspx",
	"https://gsx.apple.com/cgi-bin/WebObjects/GSXAppServer.woa",
 	"lsarc.html",
	"itdrsrc.html",
	"http://www.umich.edu/~spgonlin/",
	"unixrc.html",
	"macrc.html",
	"winrc.html",
	"prgmrc.html",
	"security.html",
	"orders.html",
	"hdwrc.html",
	"softwrc.html",
	"netrc.html",
	"webrc.html",
	"genrc.html");

    function surfto(form)
    {
    i = form.SelectMenu.selectedIndex;
    if (i == 0) return;
    window.open(url[i+1]);
<!--             window.location.href = url[i+1]; -->
    }








document.writeln('<FORM><SELECT NAME="SelectMenu" onChange="surfto(this.form)">');


    tot = siteopt.length;


    for (var i = 1; i <= tot; i++)


    document.write("<OPTION>" +siteopt[i]);


    document.writeln('</SELECT>');


    if (navigator.userAgent.indexOf("Mozilla/2") != -1)


    document.writeln('<INPUT TYPE = BUTTON VALUE = "Pull Down Surfing!">');


    document.writeln('</FORM>');


// --End Hiding Here -->
