/**
 *
 * @access public
 * @return void
 **/
function wallpaper_validate(the_form)
{
	elements = the_form.getElementsByTagName('input');

	for(var i=0; i<elements.length; i++)
	{
		if (elements[i].value == '')
		{
			alert('Please fill in all of the fields');
			return false;
		}
	}

	return true;
}