/////////////////////////////////////////////////////////////////////CONSTRUCTOR
function Key(l, f, c)
//
////////////////////////////////////////////////////////////////////////////////
{
	this.letter = l;
	this.func = f;
	this.casesensitive=c;
	
	this.Press = kePress;
}
	//////////////////////////////////////////////////////////////////////method	
	function kePress()
	//
	////////////////////////////////////////////////////////////////////////////	
	{
		if(this.func)
			eval(this.func);
		return true;
	}