
var keyPhrase = '';
function keyHandler(e) {
    var pressedKey;
	if (document.all)    { e = window.event; }
    if (document.layers) { pressedKey = e.which; }
    if (document.all)    { pressedKey = e.keyCode; }
   
	pressedCharacter = String.fromCharCode(pressedKey);
	keyPhrase = keyPhrase + pressedCharacter;
	if (pressedKey == 27) {
		keyPhrase = ''
		WM_imageSwap('splash1', 'images/homepage_splash_2.jpg');
	}
	if (keyPhrase == 'hygeia') {
		//alert('This is a good time.')
		WM_imageSwap('splash1', 'images/homepage_splash_4.jpg');
		//window.open('test.htm');
	}
}
document.onkeypress = keyHandler;

