// js file for the autosuggest box

function autoCompleteDB()
{
	this.aNames=new Array();
}

autoCompleteDB.prototype.assignArray=function(aList)
{
	this.aNames=aList;
};

autoCompleteDB.prototype.getMatches=function(str,aList,maxSize)
{
	/* debug */ //alert(maxSize+"ok getmatches");
	var ctr=0;
	for(var i in this.aNames)
	{
		if(this.aNames[i].toLowerCase().indexOf(str.toLowerCase())==0) /*looking for case insensitive matches */
		{
			aList.push(this.aNames[i]);
			ctr++;
		}
		if(ctr==(maxSize-1)) /* counter to limit no of matches to maxSize */
			break;
	}
};

function autoComplete(aNames,oText,oDiv,maxSize)
{

	this.oText=oText;
	this.oDiv=oDiv;
	this.maxSize=maxSize;
	this.cur=-1;

	
	/*debug here */
	//alert(oText+","+this.oDiv);
	
	this.db=new autoCompleteDB();
	this.db.assignArray(aNames);
	
	oText.onkeyup=this.keyUp;
	oText.onkeydown=this.keyDown;
	oText.autoComplete=this;
	oText.onblur=this.hideSuggest;
}

autoComplete.prototype.hideSuggest=function()
{
	this.autoComplete.oDiv.style.visibility="hidden";
};

autoComplete.prototype.selectText=function(iStart,iEnd)
{
	if(this.oText.createTextRange) /* For IE */
	{
		var oRange=this.oText.createTextRange();
		oRange.moveStart("character",iStart);
		oRange.moveEnd("character",iEnd-this.oText.value.length);
		oRange.select();
	}
	else if(this.oText.setSelectionRange) /* For Mozilla */
	{
		this.oText.setSelectionRange(iStart,iEnd);
	}
	this.oText.focus();
};

autoComplete.prototype.textComplete=function(sFirstMatch)
{
	if(this.oText.createTextRange || this.oText.setSelectionRange)
	{
		var iStart=this.oText.value.length;
		this.oText.value=sFirstMatch;
		this.selectText(iStart,sFirstMatch.length);
	}
};

autoComplete.prototype.keyDown=function(oEvent)
{
	oEvent=window.event || oEvent;
	iKeyCode=oEvent.keyCode;

	switch(iKeyCode)
	{
		case 38: //up arrow
			this.autoComplete.moveUp();
			break;
		case 40: //down arrow
			this.autoComplete.moveDown();
			break;
		case 13: //return key
			window.focus();
			break;
	}
};

autoComplete.prototype.moveDown=function()
{
	if(this.oDiv.childNodes.length>0 && this.cur<(this.oDiv.childNodes.length-1))
	{
		++this.cur;
		for(var i=0;i<this.oDiv.childNodes.length;i++)
		{
			if(i==this.cur)
			{
				this.oDiv.childNodes[i].className="over";
				this.oText.value=this.oDiv.childNodes[i].innerHTML;
			}
			else
			{
				this.oDiv.childNodes[i].className="";
			}
		}
	}
};

autoComplete.prototype.moveUp=function()
{
	if(this.oDiv.childNodes.length>0 && this.cur>0)
	{
		--this.cur;
		for(var i=0;i<this.oDiv.childNodes.length;i++)
		{
			if(i==this.cur)
			{
				this.oDiv.childNodes[i].className="over";
				this.oText.value=this.oDiv.childNodes[i].innerHTML;
			}
			else
			{
				this.oDiv.childNodes[i].className="";
			}
		}
	}
};

autoComplete.prototype.keyUp=function(oEvent)
{
	oEvent=oEvent || window.event;
	var iKeyCode=oEvent.keyCode;
	if(iKeyCode==8 || iKeyCode==46)
	{
		this.autoComplete.onTextChange(false); /* without autocomplete */
	}
	else if (iKeyCode < 32 || (iKeyCode >= 33 && iKeyCode <= 46) || (iKeyCode >= 112 && iKeyCode <= 123)) 
	{
        //ignore
    } 
	else 
	{
		this.autoComplete.onTextChange(true); /* with autocomplete */
	}
};

autoComplete.prototype.positionSuggest=function() /* to calculate the appropriate poistion of the dropdown */
{
	var oNode=this.oText;
	var x=0,y=oNode.offsetHeight;

	while(oNode.offsetParent && oNode.offsetParent.tagName.toUpperCase() != 'BODY')
	{
		x+=oNode.offsetLeft;
		y+=oNode.offsetTop;
		oNode=oNode.offsetParent;
	}

	x+=oNode.offsetLeft;
	y+=oNode.offsetTop;

	this.oDiv.style.top=y+"px";
	this.oDiv.style.left=x+"px";
}

autoComplete.prototype.onTextChange=function(bTextComplete)
{
	var txt=this.oText.value;
	var oThis=this;
	this.cur=-1;
	
	if(txt.length>0)
	{
		while(this.oDiv.hasChildNodes())
			this.oDiv.removeChild(this.oDiv.firstChild);
		
		var aStr=new Array();
		this.db.getMatches(txt,aStr,this.maxSize);
		if(!aStr.length) {this.hideSuggest ;return}
		if(bTextComplete) this.textComplete(aStr[0]);
		this.positionSuggest();
		
		for(i in aStr)
		{
			var oNew=document.createElement('div');
			this.oDiv.appendChild(oNew);
			oNew.onmouseover=
			oNew.onmouseout=
			oNew.onmousedown=function(oEvent)
			{
				oEvent=window.event || oEvent;
				oSrcDiv=oEvent.target || oEvent.srcElement;

				//debug :window.status=oEvent.type;
				if(oEvent.type=="mousedown")
				{
					oThis.oText.value=this.innerHTML;
				}
				else if(oEvent.type=="mouseover")
				{
					this.className="over";
				}
				else if(oEvent.type=="mouseout")
				{
					this.className="";
				}
				else
				{
					this.oText.focus();
				}
			};
			oNew.innerHTML=aStr[i];
		}
		
		this.oDiv.style.visibility="visible";
	}
	else
	{
		this.oDiv.innerHTML="";
		this.oDiv.style.visibility="hidden";
	}
};

function createAutoComplete()
{
var aNames =
	[
"change in our system of education",
"cradle legend comes to an end",
"friendly caveat",
"ghost story",
"higher standard of swearing",
"leaf from history",
"man with principle",
"new wellness dorm",
"paradoxical time for doxology",
"plan for athletic organization",
"saturday of protest at kent",
"singular phenomenon",
"story in latin",
"word about plagiarism",
"abolishes honors system",
"academic council holds meeting",
"academic degrees",
"accident still under investigation",
"activity honorary",
"ad hoc group considers yager",
"additional housing to open up",
"addresses faculty on defense",
"adjournment of college",
"advertising in the student",
"advisors to meet parents",
"affirmative action office bypassed",
"affirmative team wins",
"afghanistan",
"agitate for birth control",
"airplanes of doubled size",
"alber to present churchill lecture",
"alcohol awareness promoted",
"alcohol program",
"all miami celebration is planned",
"alphdeltphi convention",
"alphsigmas win scholarship race",
"alumni athletes to be given ms",
"alumni banquet well attended",
"alumni banquet at chicago",
"alumnus tells story of capture",
"ambassador to interpret world affairs",
"amtrak may stop in oxford",
"apartment building boiler explodes",
"apartment rebuilding underway",
"applications for scholarships",
"appointed army head coach",
"april 28",
"archaeologist to lecture on crete",
"arion chair to present aid",
"arrangements for commencement",
"saturday night",
"article published",
"artist shows superb technique",
"artists series to include orchestras",
"assembly goers to hear luther king",
"assembly speaker talks on aviation",
"athletes helping youngsters",
"athletes lost in war of 1917",
"athletic managers elected last week",
"athletic programs to begin drug testing",
"atlantcongress elects miami man",
"attacks prompt warning programs",
"attendance at homecoming",
"attendance at chapel exercises",
"attention called to absence rules",
"aubrey leads y discussion group",
"aubrey publishes essay on religion",
"audience in constant uproar",
"aviation to be given at university",
"awaits army call",
"award prizes to winners",
"bsaa constitution called discriminatory",
"baccalaureate preacher chosen",
"bachelor hall",
"bain elected as president of honorary",
"bain will speak",
"ballot proves labor weak in politics",
"band practice",
"bans future political demonstrations",
"barbarism in college",
"baritone soloist with madrigal",
"baseball team on kentucky trip",
"baseball womens class teams begins",
"beauty in our culture",
"beauty in lands sculpture",
"beckett speaks to pre journalists",
"beer deliveries apparently illegal",
"beer may come back to freshman halls",
"benjamin harrison",
"benton officials confirm",
"biennial festival to be given in may",
"bishop anderson speaks at service",
"black miami faculty percentage low",
"black nationalism will resurge",
"black students say stereotypes",
"blood drive surpasses past efforts",
"blue key awards frosh scholarship",
"board of trustees",
"board of trustees approve dental",
"book analyses u.s. colleges",
"bookstores defend current high prices",
"botanical seminar",
"brief history of football",
"broadcast is climax of celebration",
"broadcasts on tap for next week",
"budget could cost oxford",
"budget cuts could have been worse",
"budget message from president upham",
"building falls despite rise of opposition",
"buildings may be demolished",
"buildings in danger",
"bush adds to miamis facade",
"bush endorses ruition plan",
"bush may speak at 82 commencement",
"business enrollment cut",
"business fraternity has industrial talk",
"business moves to cut enrollment",
"business school increases",
"cabinet head choose noggle",
"cabinet institute is held in oxford",
"cable television will be underway by july",
"callahan reflects",
"carnival to be greater than in past",
"carolyn dorn receives waa service award",
"cartwright chosen for all state team",
"celebration of washingtons birthday",
"censored or no!",
"centenary celebration",
"change in staff as jueck leaves",
"changes in faculty for next semester",
"changes proposed in school system",
"charles mccauley talks on business",
"charles stetson spencer",
"chi omega now a miami sorority",
"chi omega offers unique prize",
"chicago equatorial telescope",
"chicagoan to tell of gangs",
"childrens books being featured by",
"china consider academic exchange",
"china due to become world power",
"choosing a profession",
"christianity is happiness",
"church groups",
"cincinnati dean apologizes to faculty",
"cincy and miami to debate soon",
"citizen protest",
"city council",
"class addresses questions of ethics",
"class organization",
"classics library",
"clohesy stresses female power",
"coach ditmer gives frosh cagers let up",
"coach pittser turns in resignation",
"coach pittser to talk before w.a.a.",
"coaches redskins",
"college changes by committee",
"college color",
"college costs increase",
"college enrollment levels off this year",
"college journalism",
"columbia prof would revise price system",
"commencement plans are announced",
"commencement plans finished",
"commencement play",
"committee decides on fund division",
"committee plans enrollment survey",
"committee recommends rush changes",
"competition and enjoyment",
"complete cabinet named by elliot",
"computer age hits miami",
"confusion surrounds local flagstop",
"congregation builds church",
"congress grants more funding for students",
"constitution vote blocked in forum",
"construction work planned by university",
"construction of artificial lakes started",
"contributions to mu increase",
"convention names roosevelt",
"course focuses on responses to death",
"court denies greens appeal",
"curricula expansion planned",
"curriculum change follows new rule",
"curriculum plan passed by senate",
"curriculum strengthened",
"day of prayer february 15",
"dayton alumni prepare for game",
"depauw breaks losing streak",
"dean ashbaugh",
"dean brandon",
"dean caine guest speaker at waa meet",
"dean clark give opinion of male sex",
"dean clokey",
"dean dale",
"dean hamilton",
"dean emerson to speak",
"dean j. w. clokey",
"dean kratt",
"dean minnich",
"dean robinson",
"deans evaluating impact of cuts",
"debate abortion",
"debate finals held thursday in benton hall",
"debate league formed again",
"debate question is finally agreed upon",
"delta sigma pi",
"delta theta chi is accepted by delta chi",
"delta theta chis head fraternities",
"demonstration dispel mu apathy",
"denison proves easy",
"depression aid to scholarship",
"design caused hotel walkway tragedy",
"dillon watterson is killed in france",
"dimmers",
"dining hall remains closed",
"diplomat warns against soviets",
"director announces play cast",
"dirturbance raises liquor questions",
"disappointment stressed",
"disarmament leader claims court success",
"disastrous fire at oxford college",
"disciplinary actions wont be on transcript",
"discover skull of early primate",
"discrimination charged at ohio",
"discuss own works",
"discussion groups led by h. clarke",
"discussion on china to be held tomorrow",
"disparages draft nuptials",
"disregarding human rights",
"dissolution of blue key announced",
"ditmer prepares to close frosh season",
"ditmer selecting frosh track team",
"diver crowned before 500 couples",
"diversity marks alumni return",
"diversity marks westerns activities",
"doctor fitch of amherst is speaker",
"doctor talks on recovery at assembly",
"doctors discuss hitler",
"does business deserve increased funds?",
"dolibois recovers following surgery",
"donald bube sings with philharmonic",
"donnelly will coach 1914 team",
"donor of cup",
"dont restrict tenure",
"doobies",
"dora m. lyon to give solos over radio",
"doresa jones to head w.a.a. for next year",
"dority leaves city job",
"dorms may get cable tv service",
"dorothy meyer",
"dorothy nicol in north africa",
"duke postpones tour of america",
"early miami life",
"early rules recalled on founders day",
"easter service",
"economics journal contains article",
"economist to talk",
"education begins to decrease",
"education cuts",
"education dean to go to washington",
"education dept. still lacks dean",
"eileen mcmillan soprano",
"einstein has crisis plan",
"election petition deadline tonight",
"election petitions due monday",
"election turnout high",
"elections draw record turnout",
"elections drawing near",
"elementary school closings",
"ellen stewart is queen",
"emergency bill aids finances",
"english department to offer film minor",
"enrollement causes housing shuffle",
"enrollment decreases",
"enrollment enlarges",
"enrollment increase",
"enrollment is largest ever",
"enrollment largest ever",
"enthusiasm at football banquet",
"erodelphian hall",
"european authority to speak",
"european center enhances cultural",
"european environment draws mu",
"examinations at the university",
"exemption standards may rise",
"extemporaneous league proposed",
"extension courses given",
"exterminations under investigation",
"facts and fancy",
"faculty calls compensation low",
"faculty grant money upped",
"faculty reviews are called for",
"faculty will attend world monetary meet",
"fall enrollment rises",
"famous opera company to give program",
"famous war hero",
"farewell chapel services held",
"farewell message from dr. benton",
"federal budget said to be worst obstacle",
"federal jobs open to seniors",
"feminist lectures on discrimination",
"financial problems cause fraternity spilt",
"fine arts school now organized",
"first candidate arrives at miami",
"first game with ohio wesleyan",
"first sophomore hop a success",
"first woman pledge",
"fisk contest prize won by koscany",
"five contests on debate schedule",
"flood destroys ohio cities",
"flood puts end to glee club trip",
"flu danger on the wane",
"flu virus spreads as 203 lose fight",
"food for thought",
"football games",
"foreign films raise controversy",
"former bank president",
"former miami dean",
"former miami star athlete",
"former professor dies",
"forum discusses honor system",
"forum to discuss preparation issue",
"four instructors added to faculty",
"fraternities",
"frederick hicks",
"frenchman admires american students",
"frenchman will speak at benton",
"freshman advisor system introduced",
"futurist award won by miami student",
"gay discussion group formed",
"general ben harrison",
"general electric shows movie",
"geologists to tour canada",
"geology department gets dinosaur track",
"gerhart to speak",
"german club will hear dean minnich",
"german diplomat to give address friday",
"german invasion is wild dream",
"german universities",
"gerontology center focuses on population",
"gilkey to speak",
"gillman named assistant coach",
"girls adopt rules for coming year",
"girls crown may day queen",
"girls gym is proposed",
"goal for annual ymca",
"god and nature",
"governor nominee",
"governor requests emergency aid",
"graduate school adds new major",
"great ludwig is late hitler exile",
"greeks present passport",
"group works to free prisoners",
"groups organize",
"groups pick candidates",
"groups question poster policy",
"gym changes to come soon",
"gymnasium shows real efficiency",
"hagenbuch reviews first semester",
"hall auditorium",
"hamilton mayor to speak at banquet",
"hamilton college of labor planned",
"harvard reform",
"has article in aero digest february",
"havighurst speaks",
"havinghurst invited to macdowell colony",
"havinghurst relates m.u. history",
"havinghurst to discuss philosophy of life",
"hayden spark controversy",
"head of english department",
"head of ford aviation company speaks",
"health center opens cold clinic",
"help for miami",
"henry ford expected to visit miami soon",
"hepburn memorial markers erected",
"high school standards revised",
"historian lauds king as great american",
"historic pageant a big success",
"holderman to play for fifth varsity",
"holderman to provide ball music",
"holderman to play for strut",
"home concert tomorrow night",
"ideology is not the answer",
"immunization clinic to close",
"inaugural ceremonies",
"independents complete new organization",
"initiation rules to be changed",
"international bookstore coming",
"international relations club to meet here",
"italian government",
"italian opera on next years program",
"jack boyd selected as senior ball chairman",
"jack hart will speak to students",
"jacks corner",
"jackson browne a big concert hit",
"james galloway",
"james rogers to publish student next year",
"james smith removed home from hospital",
"jane benham at womans league",
"japan awaits reply to imperial ultimatum",
"japan rejects second peace plan invitation",
"japanese menace all world page",
"jeannett vreeland",
"jewish conference to be here in february",
"job finding is topic at assembly",
"job opportunity fair attracts 150 businesses",
"john hand",
"john ruskin",
"john smith a biography",
"john vintilla",
"join ym yw meeting arranged for sunday",
"journal carries piece by switzer",
"journal may halt publication",
"journal prints article by dr. f. c. whitcomb",
"journalism prof named student advisor",
"judicial branch changed",
"junior prom grand finale to prom week",
"junior shirts have come out",
"justice between nations necessary",
"kappa alpha slated to start new chapter",
"kappa delta colony plans installation",
"kappa delta recolonizes",
"kappa phi chapter established here",
"kathryn laughlan on road to recovery",
"kelley speaks at millett",
"kent b. mcgough named as trustee",
"kent state head lectures at banquet",
"kickoff rules changed again",
"kiebach boots skins to win",
"killpack elected officers of ymca councils",
"kindergarten glass opens in mcguffey",
"kindness face off in forum",
"king broken into early saturday",
"king library custodian tries for world record",
"king library expects change",
"king to speak for civil rights week",
"klitch takes presidency",
"kneisel quartet pleases audience",
"knights political flyers illegally posted",
"kocsany selected to play leads",
"koterba ends on top of score race",
"kreger lectures",
"kreger to speak at last lecture",
"kryls band here tonite at withrow",
"lab school funds may be cut to offset deficit",
"lab school to compile history",
"labor department to continue on site review",
"last home game saturday night",
"last number of lecture course",
"last university service of year",
"latin american",
"latin americas woes",
"latin department head",
"law lectures",
"laws hall",
"leads buckeye individual scoring",
"lecture covers policy effects on women",
"lecture given by robert frost",
"lecturer to speak on art of travel",
"lectures at the university chapel",
"letter from ann arbor",
"letter from miamiville",
"liberal arts club",
"liberal arts receive straight a averages",
"liberal arts suggestion is approved",
"liberal arts test change is proposed",
"libraries target of protests",
"library gets new collection",
"library problems discussed",
"library received books",
"library shows cover design of yearbook",
"liquor bill",
"liquor issues pass",
"literary societies",
"literary society contest",
"literary society meeting",
"loan fund exhausted",
"local milk dealers are given rap",
"local phrenologist is interviewed",
"local pin planters find new heaven",
"local residents protest sewer costs",
"long spring trip for glee club",
"louis fisher",
"louis mann",
"luncheon honors president dale",
"luxembourg tuition cut",
"lyceum",
"macarthur honors miamian",
"madrigal club",
"major general thomas",
"mammoth remains finally purchased",
"many alumni are expected back",
"many attend centennial",
"many colleges aid in war fund",
"many cutbacks expected",
"many events feature homecoming",
"many in oxford",
"marching machine celebrates 50 years",
"marcum center is host to visiting groups",
"marcum ready to accommodate seminars",
"marketing prof captures award",
"marriage authority to speak in benton",
"marshall chosen for next peace meeting",
"mathematics club",
"mathematics made optional",
"may day this afternoon",
"mcbride chosen to manage glee club",
"mccall crowned in right royal mode",
"mccluskey gives address sunday",
"mccullough hyde",
"mcdade president of pi tau",
"mcguffey awarded scholastic honors",
"mcguffey day speaker selected",
"mcguffey director selected",
"mcguffey high school principal",
"mcmillan to conduct ball chorus",
"medical authority debunks fallacies",
"meeting of the board of trustees",
"members of faculty to leave",
"members of freshman council",
"membership decreases in honor group",
"message of new era is brought here",
"messer donates leica cameras",
"miami accounting second in nation",
"miami alumni aid recruiting",
"miami alumni to help students",
"miami alumnus",
"miami architect to do columbus edifice",
"miami botanist gets harvard fellowship",
"miami buys western in 1973",
"miami celebrates 100th anniversary",
"miami chest drive",
"miami campus being beautified",
"miami graduate found slain",
"miami graduate to speak at assembly",
"miami linguists attend meeting",
"miami looks good for big six meet",
"miami magazine becomes a fact",
"miami mascot to be hatched",
"miami meets the press: nbc",
"miami offers adult education",
"miami offers hope for parents",
"miami professor helps to lure businesses",
"miami professor",
"miami promotes extension work",
"miami receives grant",
"miami religious influence good",
"miami union election",
"miami union hall",
"miami man receives great honor in europe",
"miami regains tipp report",
"miami reorganization",
"miami vs. harvard",
"miamis oldest building",
"miamis oldest employee",
"mid year play",
"military department in college",
"milk strike may spread to oxford",
"minority orientation eases entry",
"minority recruitment",
"music teacher",
"music is to be feature of hop",
"musical treat given oxford by zimbalist",
"musical treat given oxford by zimbalist",
"muslim students celebrate new year",
"national classical fraternity",
"national defense courses planned",
"national honorary founded at miami",
"national recession hits oxford hard",
"nature how it affects our ideas",
"nature teaches of god",
"navy launches vanguard",
"negro lawyer speaks",
"negro lawyer will speak at assembly",
"new athletic coach selected",
"new bible course to be offered students",
"new books in library",
"new chemistry building ready",
"new chief miami introduced saturday",
"new coach brings team discipline",
"new course in dramatic interpretation",
"new dorm construction on schedule",
"new dormitory at princeton",
"new features in madrigal concert",
"new fraternity approved",
"new frontiers",
"new group joins district fight",
"new gym refused miami by cut in budget",
"new gyms plans complete",
"new law requires seatbelts",
"new organization of miami",
"new sorority to form chapter here",
"new spring styles",
"new student constitution",
"new summer courses added",
"new university center opens",
"new vice president named",
"night school helps adults get diplomas",
"nine freshmen candidates fail to list costs",
"nineteen are initiated by phi beta kappa",
"nixon defies death threats",
"normal angell",
"novelist has book on sea published",
"novelist to talk monday",
"nuclear fright",
"nuclear gauge recovered by police",
"nuclear options",
"nursing course is installed at university",
"nursing program recuperates",
"observatory to be ready in few days",
"officer finds grave uncovered",
"officers charge city violated contract",
"official shoots himself",
"ogden hall corner stone to be laid",
"ohio colleges will play tough teams",
"old miami grad publishes poetry",
"opening performance pleases condit",
"opening chapel is held on wednesday",
"opening of the y.m.c.a.",
"orchestra plays at musical vesper",
"our energy needs outweigh risks",
"owls make last appearance",
"oxford arts club sponsors competition",
"oxford city council",
"oxford college items",
"oxford considering housing code",
"oxford marine awarded purple heart",
"oxford shoplifting still poses problem",
"oxford water emergency extended until december",
"oxford water shortage affects trees",
"oxford merchants losing market",
"oxford to be residence",
"oxford to be refuge in event of nuclear war",
"oxfords brunos kneading dough for 22 years",
"oxfords mayor resigns",
"painting by prof is sold",
"palestinian noble interprets song",
"pan hellenic council",
"parent buyers",
"parents of the year",
"pat huston may draw for annual",
"patricia travers to present concerts",
"patten to lead y.m.c.a discussion",
"patters to millet for homecoming",
"paul dietz",
"peace delegates to convene in oxford",
"peace plans to be friday forum topic",
"peace reigns once more over world",
"peace society meets here",
"pearson announces budget cuts",
"pearson announces plan for minorities",
"pearson appoints woman assistant",
"pearson brings new optimism",
"pearson philosophy",
"percy mackaye",
"percy steele",
"personnel discussed by chas. t. jenkins",
"petersen wins miss miami pageant",
"peterson paintings exhibited at miami",
"petition for office given committee",
"petitioners request increased flouridation",
"phi beta kappa",
"philip c. shera saves lives by own death",
"philip morris to sponsor game contest",
"physical development",
"physical exams show improvement",
"physicist visits here to do plasma research",
"physics paper by dr. edwards heard",
"physics and chemistry department",
"pi delta kappa gets chi omega",
"pi delta theta joins delta sigma epsilon",
"picture presented to the university",
"pierre werner",
"pine works overtime",
"plans completed for junior prom",
"plans extend on student union building",
"plans made for library addition",
"plans ready for home coming",
"play proves huge success",
"players will give first production",
"playing below usual form",
"police charge ex gridder",
"policy penalizes students",
"politeness among the students",
"political parties announce slates",
"political parties prepare rallies for caigns",
"political parties reorganize",
"popular front cabinet falls",
"popularity contest held",
"possible racial discrimination",
"possible treatment of herpes researched",
"president apham will discuss cus needs",
"president elect sets goals for ifc",
"president hughes",
"president hughes addresses frosh",
"president hughes addresses y.w.c.a.",
"president hughes favors activities",
"president warfield",
"president warfields lecture",
"president to explain s f council",
"presidential list narrowed",
"presidents list discontinued",
"presidents report to governor",
"pretzel five leader to swing out for ball",
"prexy benton chief phi delt",
"prexy elected to office at meeting",
"prexy greets frosh at opening assembly",
"prexy speaks before preble co. women",
"prexy to speak at natl conference",
"prime minister of luxembourg",
"prince suggests peace program",
"prizes for public speaking",
"professor achorn addresses forum",
"professor designs new western course",
"professor h. white attends meeting",
"professor hall leaves",
"professor hoffman dies of flu",
"professor howard gets favorable comment",
"professor kuhne appointed on committee",
"professor locher given money grant",
"professor makes laudable report",
"professor merrill",
"professor montgomery attends conference",
"professor named president of journal",
"professor nationally recognized",
"professor parrots lecture",
"professor presents new play reviews",
"program aims at retaining students",
"program board schedules ball",
"program board to hold shakespeare festival",
"program for annual commencement week",
"program presented by music student",
"programs offer assistance on the",
"project integrates handicapped",
"promotes responsible drinking",
"property gift made to univ. by graduate",
"proposal receives opposition",
"proposed system for frat finance",
"provost outlines beer day repercussions",
"provost resigns",
"provost resigns to seek new job",
"psychologist to reveal norways inside story",
"psychology schools topic of lecturer",
"publication of the recensio",
"purpose of sororities discussed in workshop",
"quadball tourney proves successful",
"quality of students rising steadily",
"queen bonnie curpen",
"queer effects come after fake student",
"racism is alive and well at miami",
"radio studio to be built in hospital",
"radio to have place in instruction here",
"ramsen to teach",
"reaction to title ix report mixed",
"reagan forced to defend policy",
"reagan had other motives for invasion",
"recensio caign is well under way",
"recensio pictures",
"recensio receives yearbook award",
"reception for dads",
"record enrollment jeopardizes subsidy",
"record faces ncaa ban",
"record turnout elects asg senate",
"records fall at inaugural miami invitational",
"red and white is ready for cincy game",
"red carpet day attracts 300",
"red tape at varsity dances",
"redskin rugby club is the king of ohio",
"redskins open home grid card",
"redskins trek to annual bearcat fray",
"reed named new redskin coach",
"reed next years football captain",
"reed optimistic despite losses",
"registrars office announces schedule",
"registration reveals loss",
"registration smaller in second term",
"regulations for the library",
"relations clubs convene at miami",
"religion in life week opened by dr. morgan",
"religion topic of address by dr. e. mims",
"religious man to speak here december 14",
"rental collection of popular novels opened",
"reorganization of the erodelphian",
"report examines enrollment problem",
"report shows little change in sex habits",
"report urges change in miami governance",
"report says no car rule unenforceable",
"reporter gets audience with indian leader",
"republican club publishes paper",
"republicans oppose regans plans",
"reserve carries off state oratorical prize",
"residents petition to rename race street",
"resignation of head football",
"restoration brings history inn focus",
"reviewer commands tower play direction",
"revised housing code takes effect in city",
"revised spelling may be adopted",
"revised system of athletic grading",
"revision of constitution is accepted",
"revolutionary theory advanced by botanist",
"rhodes exams in ohio soon",
"rhodes scholarship exams oct. 15",
"robert berry named 28 baseball manager",
"roosevelt thanks mock convention",
"roosevelt to be discussed",
"rumors of shortage in coal are false",
"runners favored to win mac",
"runners lose 1st dual since 78",
"russell to speak on speech errors",
"russian revolution discussed in chapel",
"russian symphony here next tuesday",
"ruth harris heads religious council",
"ruth hughey given lead in fall play",
"sabbath afternoon lectures",
"salary inequality persists",
"sale of contraceptives underway",
"sale of hard liquor",
"sargent breaks millett record",
"sargent breaks record",
"sargent leads track team in indoor opener",
"scholarship cup awarded to phi delts",
"scholarship cups awarded to fraternities",
"scholarship given to hedi politzer",
"school district split",
"school district will split in two",
"school experts calls for state aid",
"school of fine arts",
"school spirit defined by students",
"school survey day tomorrow",
"school tax to be voted on in november",
"school board approves two tax proposals",
"science academies hold meeting here",
"senate acts on l.a. tests",
"senate approves new election bill",
"senate asks for hall condom dispensers",
"senate decides on calendar",
"senate deliberates on course changes",
"senate passes on credit for extra activity",
"senior class awaits graduation exercise",
"senior class to dispose of surplus money",
"senior cottage to be rebuilt",
"senior finance major interns in finland",
"senior girls c restful",
"senior jobs exceed last years totals",
"show increase in enrollment",
"shriver allows showing of x rated film",
"shriver focus of sac student protest",
"shriver heads into last lap",
"shriver spins tales from miami haunts",
"sickness fatal to presidents mother",
"sigma delta chi",
"silent influence",
"simons to be chest drive leaders",
"soccer loses opener",
"soccer team readies for denmark voyage",
"sociology lecture is well attended",
"solicit opinions based on new publication",
"solidarity is pain in the neck for russians",
"sophomore hop kind elected by soph girls",
"sophomore hop plans delayed by petition",
"sophomore in liberal arts college",
"sophomore tennis titles won",
"sophomores will give informal hop",
"sophomores win annual contest",
"sororities plan events for mothers",
"sororities pledge 154 girls from freshmen",
"south quad opposes new dorm",
"space expansion needs limitations",
"spanish professor gets appointment",
"spanish rebel army advances on catalonia",
"spanish textbooks are edited by professors",
"speaker warns students of liability risks",
"speakers announced for lecture series",
"speakers bureau begins activities",
"speakers bureau proving popular",
"speakers signed for discussion",
"speakers talk on progress",
"speaks at western college",
"special armistice vespers in benton",
"special election settles tie votes",
"spellers slaughter language",
"spencer awarded yale fellowship",
"spiritual side of marriage",
"spring elections coming may 10",
"spring elections to be held may 19",
"spring elections are closely contested",
"stadium funds still solved",
"staff for recensio selected",
"staff members to attend clinic",
"staff tryouts will be held",
"state funds for projects frozen",
"state funds go for buildings",
"state may raise school loans",
"state officials say",
"stress program to start next week",
"stricter admission standards passed",
"strong sermon by dr. mathew",
"struggle to regain due rights",
"stuart chase to give talk in benton hall",
"stuart chase to talk here on economics",
"student faculty council elects erickson",
"student conference is held in kentucky",
"study shows students do need federal aid",
"stylish art show stops in oxford",
"subscription price of the miami student",
"switzer awarded motor co. prize",
"symphony concert in auditorium",
"synthetic straws are new trend",
"syrup flows at hueston woods",
"systems department limited",
"talawanda bans smoking",
"talawanda board cuts education contract",
"talawanda schools may need operating levy",
"tariff walls imperil europe says speaker",
"tartuffe given in hamilton last week",
"task force calls for changes in the ur",
"task force studies need for child care",
"teacher studies knuckle boxing",
"team captains are appointed on chest drive",
"team gone on up state trip",
"team leaders selected for test drive",
"tenure becoming issue of the 80s",
"terrible disaster occasioned by new boots",
"terrorism industry style",
"thomas bans new gambling devices",
"thompson given resources award",
"thompson speaks on birth control",
"thompson to tell of population",
"title ix brings changes",
"title ix not being enforced",
"tommy dorsey booked for prom",
"torchbearers brighten stage with kelly wit",
"touring debaters to meet miamians",
"tower ruling is made by council",
"towers play cast chosen by miss flood",
"towers play cast named by abegglen",
"track men to meet denison tomorrow",
"track team runs away with crown",
"trainees to occupy vacancies",
"training corps cadets honored",
"tree day to be saturday at western",
"tribe loses in overtime",
"tribe miami maps plans for future",
"trustees approve pre school lab",
"trustees approve sls",
"trustees meet in annual session",
"trustees protect historic sites",
"trustees reject visitation",
"trustees vote on big things",
"trustees to consider response to subsidy cut",
"trustees to lease mcguffey",
"tuition freeze forces deficit",
"tuition hikeon the way",
"tuition and fees to rise",
"twenty men elected to blue key",
"twenty pages of style in this issue",
"two departments may be dropped",
"uncle sam to enlist eligibles",
"unconventional education",
"understanding of racial problems needed",
"unemployed profs aided by colleges",
"unger appointed to student editorship",
"unidentified men rob kfc",
"union building group to form legal body",
"union building plans discussed at luncheon",
"university accepts new football stadium bid",
"university commencement",
"university education",
"university given statue in bronze",
"university grant guard",
"university member of art institute",
"university responsible",
"university straw polls for hoover",
"university women to hold manless dance",
"university to house members",
"upham announces faculty changes",
"upham announces new reductions",
"upham attends conferences in chicago",
"upham fire called suspicious",
"upham gives history of university",
"upham speaks at conference",
"upper classes at close of silence period",
"urges land be made into game sanctuary",
"valuable books added to library",
"van tassell opens series",
"van voorhis speaks at college commons",
"vandalism up in city",
"vandals anger republican",
"varied program by sykora is popular",
"varsity takes frosh scalp",
"varsity to meet cincinnati next",
"varsity wins fast game from cincy",
"varsity wins opening game",
"vesper service to be chicago u. man",
"victory corsages planned for prom",
"victory over wilmington",
"violinist to appear in series",
"virgilio lazzari appears on musical program tonight",
"visitation restrictions may be relaxed",
"visitation at first meeting",
"visiting athletes treated royally",
"visiting british prof praises different educational system",
"vital changes in school laws",
"vocational clinic to open next month",
"volleyball prepares for state tournament",
"voluntary chapel is yale experiment",
"volunteers hold meeting here",
"volunteers to meet next month",
"wmub",
"wmub cuts councils air time",
"wmub manager dies at fifty four",
"wade meet in richmond",
"wagner concert great success",
"wagner night to be observed",
"wagner and parsifal",
"war bond committee appointed",
"war bond sale exceeds quota for february",
"war is social disease",
"war prevents presentation of scholarship",
"war work takes up most of prexys time",
"ward qualifies for nationals",
"warm weather is an accident",
"washington returns to miami",
"water shortage battle drags on",
"watson lists plans to help minorities",
"watt seeks moratorium",
"watts ax aimed at western",
"wayne burns new tennis coach",
"we must prevent india war smith",
"weekend planned for minorities",
"weekend vandalism up",
"welcoming address given by dr. upham",
"well known actors in milne play",
"wellness dorm to stress fitness",
"wells hall again scene of large crowd",
"wells hall rapidly nearing completion",
"wesleyan glee club again wins ohio contest",
"wesleyan here next saturday",
"wesleyan sophs threaten jail",
"western bell tower to be completed in june",
"western choir to present next vespers",
"western college dean to be chosen by march",
"western college holds enthusiastic class day",
"western college illuminated by its unique",
"western construction noise gets criticism",
"western council opposes merger",
"western council urges merger consideration",
"western enrollment increases",
"western hall governments unite",
"western has job advantages",
"western opts for open courses",
"western tries open visitation",
"white collar businesses wanted",
"white reviews european war crisis sunday",
"wickenden speaks",
"wickenden talks in vesper service",
"wickenden to see brother installed",
"wickenden to talk at hillel meeting",
"wickenden to speak at vesper services",
"william klein approved as hop chairman",
"william prince of orange",
"williams case could go to jury tonight",
"williams to re open in december",
"winds of spring",
"wine parties",
"winning three hard chionships",
"winter exhibitions of the literary societies",
"wisconsin bean is speaker at lecture",
"wisconsin latin prof. to lecture tomorrow",
"woellhaf announces play cast",
"woellhafs play to be presented",
"wolfe gets picture in athletic journal",
"wolford to talk before phi sigma",
"wolverines snap miamis streak",
"woman joins oxfords finest",
"woman tells of pioneer days in local history",
"women are back after absence of five weeks",
"women carrry mu sports tradition",
"women debaters defeat cincinnati",
"women debaters to discuss war debts",
"women debaters to engage in five meets",
"women waiting brighter future",
"women in politics make advances",
"women to elect house chairmen",
"women to participate in first forum panel",
"womens athletic program probed",
"womens debate team to meet butler tonight",
"womens dormitories",
"womens exhibition at herron hall a success",
"womens musical club gives concert",
"work advances on new field",
"work begins in earnest",
"work on new halls stopped temporarily",
"work still continues for retiring goggin",
"work to begin soon",
"work on recensio moving steadily",
"world faith to be youth groups topic",
"world record is held by fela",
"world topics are discussed by delegates",
"world traveler speaks in hepburn",
"would eye politics at two schools",
"wrestlers third at ball state tourney",
"writer warns of toxic wastes",
"writes about moorish empire",
"writes letter of praise",
"written by mr. ralph l. henry",
"wyer mentions legal action",
"wyer revealed as propagandist",
"wyer will be at assembly",
"ywca worker speaks at vespers",
"yale college commencement",
"ye merrie players to give tartuffe",
"ye merrie players to be reorganized",
"york has varied stories to tell",
"young mens christian association",
"young star in phi tau win",
"young surprised by andes suit",
"youngest hamilton grad attends miami",
"youth deliver petition",
"zambian professor teaches history",
"ziegfield returns six beauty photos",
"zimern lectures in cincinnati on european",
"zody gets harriers in form",
"zody named president of ncaa council",
"zones cause unrest says prof. ekblaw",
"zoology preofessor dies after long illness",
"zoology professor appointed to national"
	];

new autoComplete(aNames,document.getElementById('txt'),document.getElementById('suggest'),10);
}
