// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults

function validate(form) 

{
// Checking if at least one period button is selected. Or not.

   if(!document.form1.agree.checked){
			alert("Please check the box below indicating that you have read and understand the terms and conditions");
   return false; }


return true;
}
