
function update_speaker_panels() {
		var day_num = $('day_num').getValue();
		var myAjax = new Ajax (
			'admin/actions.php?action=speakers_panels&day_num=' + day_num, {
				method : 'get',
				update : 'panel_select_container'
			}
		).request();
}

function redirect(url) {
	window.location.href = url;
}
/*
function ENewsletterPro_JoinForm_Validator(theForm)
{
  if (theForm.Email.value == "")
  {
    alert("Please enter a value for the \"Email Address\" field.");
    theForm.Email.focus();
    return (false);
  }
  if (theForm.Email.value.length < 7)
  {
    alert("Please enter at least 7 characters in the \"Email Address\" field.");
    theForm.Email.focus();
    return (false);
  }
  if (theForm.Email.value.length > 255)
  {
    alert("Please enter at most 255 characters in the \"Email Address\" field.");
    theForm.Email.focus();
    return (false);
  }
  return (true);
}
*/
