BR.BrcsEmail=Class.create({initialize:function(){this.brcs_email=new Object();Event.observe('accept','click',this.save.bindAsEventListener(this));},save:function(e){if($('email').value!=''&&$('email').value!='Enter Your Email Address...'){this.brcs_email.email=$('email').value;new Ajax.Request('/accept-brcs-terms',{method:'post',parameters:this.brcs_email,onSuccess:function(){$('form').replace('<h1>Thanks for signing up — begin your pursuit of a trip to Miami by <a href="/articles/new" title="Write a new article">writing an article</a> now!</h1>');},onFailure:function(){alert('There was an error! Please contact bleacherreport.com');}});}else{alert('Please enter your email address!');}
e.stop();}});