<!--
		function handler(e) {
			// In NN4, e now holds the keyboard information
			// For MSIE4, we can use the event object property:
			var strRet=""; 
			
			if (document.all) {
				e = window.event;
			}

			if( e.altKey )
			{
				switch (e.keyCode )
				{
					// 0
					case 48: window.location = 'home.aspx'; break;
					// 1
					case 49: window.location = 'view_cart.aspx'; break;
					// 2
					case 50: window.location = 'checkout.aspx'; break;
					// 3
					case 51: break;
					// 4
					case 52: break;
					// 5
					case 53: break;
					// 6
					case 54: break;
					// 7
					case 55: break;
					// 8
					case 56: break;
					// 9
					case 57: break;
				}
			}
		}
//-->
<!--
document.onkeyup = handler;
-->