(function(window){	function Registry()	{	}	Registry.data	= [];	Registry.set = function(index, value)	{		Registry.data[index] = value;	}	Registry.get = function(index)	{		if(!Registry.data[index])		{			alert('Registry::get() > No data with index: ' + index + ' found!');		}		return Registry.data[index];	}	Registry.deleteIndex = function(index)	{		delete Registry.data[index];	}	window.Registry = Registry;}(window));
