<!-- Original:  Jay Bienvenu (jay@bienvenu.net) -->
<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

keyBuffer = "";
var key = new Array();  // Define jump-key pages here
var name = new Array();  // Define jump-key pages here

key['ct'] = "../training.html";              name['ct'] = "Computer Training";
key['cs'] = "../compuSales.html";	          name['cs'] = "Computer Sales";
key['dc'] = "../document.html";	          name['dc'] = "Document &amp; Business Centre";
key['tel'] = "../phone.html";	          name['tel'] = "Phone/Fax &amp; GSM Services";
key['pb'] = "../printing.html";	          name['pb'] = "Printing &amp; Publishing";
key['web'] = "../webPromo.html";	          name['web'] = "Web Development Services";
key['links'] = "../links.html";	          name['links'] = "Useful Links";
key['us'] = "../aboutUs.html";	          name['us'] = "Read about Us";
key['you'] = "../aboutYou.html";	          name['you'] = "Tell Us about You";
key['home'] = "../index.html";	          name['home'] = "Iortyange.8m.Com Homepage";
key['training'] = "../training.html";        name['training'] = "Computer Training";
key['computer'] = "../compuSales.html";	  name['computer'] = "Computer Sales";
key['document'] = "../document.html";	  name['document'] = "Document &amp; Business Centre";
key['phone'] = "../phone.html";	          name['phone'] = "Phone/Fax &amp; GSM Services";
key['printing'] = "../printing.html";	  name['printing'] = "Printing &amp; Publishing";
key['web'] = "../webPromo.html";	          name['web'] = "Web Development Services";
key['links'] = "../links.html";		  name['links'] = "Useful Links";
key['us'] = "../aboutUs.html";		  name['us'] = "Read about Us";
key['you'] = "../aboutYou.html";	          name['you'] = "Tell Us about You";
key['home'] = "../index.html";	          name['home'] = "Iortyange.8m.Com Homepage";
key['search'] = "../search.html";	          name['search'] = "Iortyange.8m.Com Site Search";
key['back'] = "javascript:history.back()";         name['back'] = "Backward to previous page...";
key['forward'] = "javascript:history.forward()";   name['forward'] = "Forward to next page...";
key['exit'] = "javascript:window.close()";         name['exit'] = "Close this window...?";
key['close'] = "javascript:window.close()";        name['close'] = "Close this window...?";
key['print'] = "javascript:self.print()"; name['print'] = "Send this page to printer.";
key['response'] = "../feedback.html";        name['response'] = "Your feedback will be appreciated.";
key['privacy'] = "../privacy.html";          name['privacy'] = "Read our privacy policy.";
key['help'] = "../help.html";                name['help'] = "Help on making this site useful.";
key['sitemap'] = "../sitemap.html";          name['sitemap'] = "Site Structure and Map.";
key['feedback'] = "../feedback.html";        name['feedback'] = "Your feedback will be appreciated.";
key['contact'] = "../feedback.html";         name['contact'] = "Your feedback will be appreciated.";
key['map'] = "../sitemap.html";              name['map'] = "Site Structure and Map.";
key['navigation'] = "../sitemap.html";       name['navigation'] = "Site Structure and Map.";
key['navigate'] = "../sitemap.html";         name['navigate'] = "Site Structure and Map.";
key['structure'] = "../sitemap.html";        name['structure'] = "Site Structure and Map.";
key['email'] = "mailto:webmaster@iortyange.8m.com?subject=INFO REQUEST FROM MASHI COMPUTER CENTRE WEBSITE&body=Dear Webmaster at www.iortyange.8m.com, I have visited your eShop at http://www.iortyange.8m.com and (using the email hotkey) I have the following message for you...";        name['email'] = "Email postmaster@iortyange.8m.com.";
key['games'] = "../games/index.html";        name['games'] = "Games on Iortyange.8m.Com.";
key['memory'] = "../games/memory.html";      name['memory'] = "Concentration - memory cards.";
key['typing'] = "../games/typing-test.html"; name['typing'] = "Typing speed test.";
key['puzzle'] = "../games/box-puzzle.html";  name['puzzle'] = "Box Puzzle.";
key['paranoid'] = "../games/break-out.html"; name['paranoid'] = "Break-out paranoid bouncer.";
key['crab'] = "../games/crab-race.html";     name['crab'] = "Crab Race.";
key['hangman'] = "../games/hangman1.html";   name['hangman'] = "Hangman - Nigerina States/Towns.";
key['photo'] = "../photoSlide.html";         name['photo'] = "Mashi Image Slide Album.";
key['photos'] = "../photoSlide.html";        name['photos'] = "Mashi Image Slide Album.";
key['calendar'] = "../tools/calendar.html";  name['calendar'] = "Comprehensive Javascript Calendar.";
key['address'] = "../tools/address.html";    name['address'] = "Javascript Address book with Cookies.";
key['calculator'] = "tools/calculator.html";       name['calculator'] = "An ecellent Javascript calculator.";
key['messages'] = "../corkboard/index.html"; name['messages'] = "Leave messages on our Community Board.";
key['board'] = "../corkboard/index.html";    name['board'] = "Leave messages on our Community Board.";

key['board'] = "../corkboard/index.html";    name['board'] = "Leave messages on our Community Board.";

key['eshop'] = "../eshop/index.htm";    name['eshop'] = "Buy goods and services online using our eshop.";
key['shop'] = "../eshop/index.htm";    name['shop'] = "Buy goods and services online using our eshop.";
key['shopping'] = "../eshop/ndex.htm";    name['shopping'] = "Buy goods and services online using our eshop.";
key['cart'] = "../eshop/index.htm";    name['cart'] = "Buy goods and services online using our eshop.";

key['automobileafrica.com'] = "index.html";    name['automobileafrica.com'] = "Buy goods and services online using our eshop.";


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; 