/*
	ictsExt
	extensions and helpers for mootools
*/

Element.extend
({
	hide: function()
	{ this.style.display = 'none'; },

	show: function()
	{ this.style.display = ''; }
});


/*
	standalone functions
*/

function isHidden( field )
{ return ( $(field).style.display == "none" ) ? true : false; }
