var framecontrol = {
	'updateHeight' : function(p_height, p_element)
	{
		p_element.style.height = p_height + 10 + 'px';
	},
	
	'rainwater' : {
		'updateHeight' : function(p_height)
		{
			framecontrol.updateHeight(p_height, document.getElementById('rainwaterFrameContent'));
		}
	}
};
