  $(document).ready(function(){
	  $(":submit").parent('td').parent('tr').before("<tr><td><a href=\"\" onclick=\"$.prompt('Upon entering your email address, you are requesting information pertaining to the form in which that email address was submitted as well as additional information which we believe to be relevant to your specified areas of interest in the future.');return false;\" style=\"border:0;\">Terms Of Service</a>*</td><td><input type='radio' name='TOSA' Id='TOSA' value='Agree'> Agree <input type='radio' name='TOSA' ID='TOSD' value='Disagree'> Disagree</td></tr>");
	  $("form").submit(function() {
	        if ($("input[@name='TOSA']:checked").val() == "Agree") {
	          return true;
	        }
	        if($("#errordisp").attr("id") == undefined){
	        $(":submit").parent('td').parent('tr').before("<tr id='errordisp'><td></td><td style='color:red;'>Please agree to our TOS</td></tr>");
	   		 }
	        return false;
	      });
	  });
