var Global = new Object;
Global.val = new Array;

Global.set = function(id,val) {
	this.val[id] = val;
}

Global.get = function(id) {
	var v = this.val[id];
	if(id=='tasks_action') {
		if(v == 'reservationslistall') {
			v = 'reservationslist';
		}
	}
	return v;
}	
