/** 
* Project: EasiAccess
* Class for lock control user actions
*
*/

var Locker = Class.create();
Locker.prototype =
{
	initialize: function ()
	{
    	this.bLock = false;
	},

	lock: function() { with (this)
	{
		bLock = true;
	}},

	unlock: function(){ with (this)
	{
		bLock = false;
	}},

	locked: function() { with (this)
	{
		return bLock;
	}}
}
