<!--
/*********************************************************************************************
 * e107 PLUGIN: Auto Gallery
 * VERSION:     3.xx
 * DESCRIPTION: A media/image gallery, where galleries are based on a directory structure. 
 *              Thumbnails are automatically generated through Imagemagick or GD.
 * WRITTEN BY:   Tarek Taha (www.tarektaha.com) and Mr_Visible (www.cerebralsynergy.com)
 * DATE:        23/04/2008
 *
 * Released under the terms and conditions of the
 * GNU General Public License (http://gnu.org).
 ********************************************************************************************/
function formValidator()
{
	var upload_button = document.foundmedia.submit;
	upload_button.disabled='true';
	hidden_span = document.getElementById('hide_stuff');
	hidden_span.style.display = 'block';
	upload_button.submit();
	return true;
}
function checkAll()
{
	for (var i=0;i<document.forms['foundmedia'].elements.length;i++)
	{
 		var e=document.forms['foundmedia'].elements[i];
 		if ((e.name != 'SelectAllCheckBox') && (e.type=='checkbox'))
 		{
 			e.checked=document.forms['foundmedia'].SelectAllCheckBox.checked;
 		}
 	}
}

//-->