<!--NOEDIT-->		// menu for favorite site pulldown menu

function PopClock() {
// this function not currently used
// open("clock.html","","scrollbars=no,resizable=no,width=120,height=120,left=400,top=100")

}

// this function opens favorite site from pulldown in "indexleft" page
// using a SWITCH statment worked in MSIE but not in Netscape, so i did it this way


sites = new Array()
sites[0]=""
sites[1]="http://antwrp.gsfc.nasa.gov/apod/astropix.html",""
sites[2]="http://space.com",""
sites[3]="http://www.snopes2.com/",""
sites[4]="http://www.google.com",""
sites[5]="http://www.cmhn.org",""
sites[6]="http://www.go-bucks.com",""
sites[7]="http://home.teleport.com/~howorth/e-crostic/index.html",""
sites[8]="http://www.csicop.org/",""
sites[9]="http://www.pogo.com",""
sites[10]="http://www.emule.com/poetry/index.cgi"
sites[11]="http://developer.netscape.com/docs/manuals/communicator/jsref/index.htm"
sites[12]="http://developer.netscape.com/docs/manuals/htmlguid/contents.htm"
sites[13]="http://inkjetrus.net/"
// sites[14]=""


function menu()  {

for (var i=1; i < sites.length;  i++)   {

		if   (document.f1.n1.options[i].selected)  {
		open(sites[i])
		break
		}		
	}
}


<!--/NOEDIT-->