var counter = 0;
function eraseKeywords() {
if(counter == 0) {
document.getElementById("searchbox").value = "";
counter++;
}
}
function selectAndGo() {
var thisindex = document.getElementById("quicklinks").selectedIndex;
if(thisindex != 0) {
newaddress = document.getElementById("quicklinks")[thisindex].value;
window.location.href = newaddress;
}
}
function makeQuickLinks() {
var quickLinksText = 'AthleticsAcademic CatalogsAdministrationAdvisingCalendars/SchedulesClass ScheduleColleges/DepartmentsDirectories (Phone/Email)Emergency InformationEmployment OpportunitiesIT ServicesLibraryMaps and DirectionsMuseumOffice of ResearchOther ISU Centers';
listItems = quickLinksText.split ('');
document.writeln('');
document.getElementById("quicklinkform").reset();
}