/*
 * footer.js
 * Copyright (C) 2008
 * Author: Pascal Haakmat <pascal.haakmat@lightmaker.com>
 * Created: 2008-03-21
 */

var behaviourRules = 
{	
	'#PopupDisclaimer' : function(el)
	{
		el.onclick = function()
		{
			Popup.show(this.href, 'disclaimer');
			return false;
		}
	},
	'#PopupHelp' : function(el)
	{
		el.onclick = function(el)
		{
			Popup.show(this.href, 'help');
			return false;
		}
	}	
}

Behaviour.register (behaviourRules);