/*
 * Key class
 * =========
 * Author: Barak Ulmann
 * Description: return a sinle field's object to hold the value of a pressed key
 * based on the DynLayer technology. learn more about the DynDuo and cross-browser dhtml in:
 * http://www.dansteinman.com/dynduo/
 * Last Updated: Januar 11th 2004
 *
 */

// e - key event required in NS
function Key(e)
{
	this.value = browser.ie? event.keyCode: e.which
}