<!-- Original:  Jay Bienvenu (jay@bienvenu.net) modified slightly-->

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin

keyBuffer = "";
var key = new Array();  
var name = new Array(); 
key['bo'] = "../books.html";      
key['bu'] = "../business.html";		
key['ce'] = "../celebrities.html";	
key['co'] = "../consumers.html";		
key['de'] = "../demographics.html";		
key['ed'] = "../education.html";
key['en'] = "../entertainment.html";		
key['fa'] = "../favorites.html";	
key['ge'] = "../geography.html";	
key['lo'] = "../local.html";							
key['st'] = "../state.html";						
key['fe'] = "../federal.html";	
key['me'] = "../health.html";		
key['in'] = "../invest.html";		
key['la'] = "../law.html"; 
key['li'] = "../library.html";		
key['mo'] = "../money.html";		
key['ne'] = "../media.html";		
key['se'] = "../searching.html";
key['sp'] = "../sports.html";		
key['tr'] = "../travel.html";	
key['ea'] = "../weather.html";	
key['aw'] = "http://www.weather.com/weather/cities/us_wi_appleton.html";
key['at'] = "attractions2.html";			
key['al'] = "almanacs.html";		
key['cc'] = "calculators.html";	
key['ca'] = "calendars.html";	
key['ph'] = "phone.html";	
key['qu'] = "quotes.html";	
key['ff'] = "fastfacts.html";	
key['ti'] = "time.html";	
key['ki'] = "../../childrens/internetsites.html";	
key['cb'] = "http://www.cbtl.org";	
key['ii'] = "http://lii.org";	
key['h'] = "/"; 
key['q'] = "../";		
key['w'] = "../wi.html";		
key['r'] = "topics.html";		
key['ya'] = "http://www.yahoo.com/"; 		
key['yy'] = "http://b1.yp.yahoo.com/"; 		
key['go'] = "http://www.google.com";	
key[','] = "http://www.google.com";	
key['av'] = "http://www.altavista.com";		
key['yn'] = "http://news.yahoo.com";		
key['ym'] = "http://movies.yahoo.com";		
key['op'] = "http://www.dmoz.org/";	
key['x'] = "http://www.kdl.org/libcat/whatsnext.asp";
key['z'] = "http://www.usps.gov/ncsc/lookups/lookup_zip+4.html";	
key['1'] = "http://www.ingrambook.com/ipage/";	
key['2'] = "http://www.wiscat.net/wp2000/signin.asp?cid=stwi&lid=06AN&mode=P";	
key['3'] = "http://www.wiscat.net/wp2000/signin.asp?cid=stwi&lid=06AN&mode=P";	
key['4'] = "http://www.switchboard.com/bin/cgiqa.dll?MG=";	
key['6'] = "http://www.anywho.com/resq.html";	
key['7'] = "http://www.anywho.com/telq.html";	
key['5'] = "http://www.switchboard.com/bin/cgirlookup.dll?LNK=14:4&MEM=1";	
key['8'] = "http://inter800.com/search.htm";	
key['9'] ="http://www.infospace.com/_1_4O3VUIS035EDB62__info/redirs_all.htm?pgtarg=ppli";	
key[';'] = "http://www.infospace.com/info/reverse.htm";	
key['sw'] = "http://www.switchboard.com/bin/cgidir.dll?FUNC=STDNAME&MEM=1";	
key['an'] = "http://www.anywho.com/bgq.html";	
key['at'] = "http://www.athand.com/";	
key['mq'] = "http://www.mapquest.com/";	
key['cn'] = "http://www.cnn.com/";	
key['u'] = "http://www.usatoday.com/";	
key['am'] = "http://www.amazon.com";	
key['ab'] = "http://www.amazon.com/exec/obidos/ats-query-page/102-0255082-0125732";	
key['mw'] = "http://www.m-w.com/dictionary";	

function getKeySite(keyStroke) {
isNetscape=(document.layers);
eventChooser = (isNetscape) ? keyStroke.which : event.keyCode;
which = String.fromCharCode(eventChooser).toLowerCase();
keyBuffer += which;
window.status = "keyBuffer='" + keyBuffer + "'";
for (var i in key) if (keyBuffer == i) {
window.location = key[i];
keyBuffer = ""; // clear buffer
}
var matches = 0;
var kbLength = keyBuffer.length;
for (var i in key) if (keyBuffer == i.substr(0,kbLength)) matches++;
if (matches == 0)  {
window.status = "No match on '" + keyBuffer + "'.";
keyBuffer = "";// clear buffer
   }
}
document.onkeypress = getKeySite; 
//  End -->