function regSubmit(){
	var current=$('#quick-reg-current').val();
	var fName=$('#cons_first_name').val();
	var lName=$('#cons_last_name').val();
	var eMail=$('#cons_email').val();
	eMail=eMail.replace('+','%2B');
	var intAccessible=$('#accessible_design').is(':checked');
	var intDisability=$('#disability_rights').is(':checked');
	var intEmailUpdates=$('#email_updates').is(':checked');
	var intSports=$('#sports_and_recreation').is(':checked');
	var intNewsletter=$('#pva_newsletter').is(':checked');
	var intHealthCare=$('#health_care').is(':checked');
	var denySubmit=$('#denySubmit').val();
	if(current=='1'){
		hideAllErrors();
		if(fName==''){
			fNameError();
			$('#cons_first_name').focus();
			if(lName=='') {
				lNameError();
				if(eMail.indexOf('@')==-1||eMail.indexOf('.')==-1){
					eMailError();
				}
			}
			if(eMail.indexOf('@')==-1||eMail.indexOf('.')==-1){
				eMailError();
			}
		}
		else if(lName==''){
			lNameError();
			$('#cons_last_name').focus();
			if(eMail.indexOf('@')==-1||eMail.indexOf('.')==-1){
				eMailError();
			}
		}
		else if(eMail.indexOf('@')==-1||eMail.indexOf('.')==-1){
			eMailError();
			$('#cons_email').focus();
		}
		else{
			if(denySubmit==''){
				$('#quick-reg-success').html('<iframe src="http://pva.convio.net/site/PageServer?pagename=reus_quickReg&printer_friendly=1&fName='+fName+'&lName='+lName+'&eMail='+eMail+'&current=1&s_quickReg1=1" scrolling="no" frameborder="0" height="1" width="1"></iframe>');
			}
			$('#error-msg').hide();
			$('#quick-reg-step1').hide();
			$('#quick-reg-step2').show();
			$('#quick-reg-step2').animate({opacity: 1},500);
			$('#ACTION_SUBMIT_SURVEY_RESPONSE').attr('src','../images/email_images/24056.png');
			$('#ACTION_SUBMIT_SURVEY_RESPONSE').attr('title','Submit');
			$('#ACTION_SUBMIT_SURVEY_RESPONSE').attr('alt','Submit');
			$('#quick-reg-current').val('2');
		}
	}
	else if(current=='2'){
		if(denySubmit==''){
			if(denySubmit==''){
				$('#quick-reg-success').append('<iframe src="http://pva.convio.net/site/PageServer?pagename=reus_quickReg&printer_friendly=1&eMail='+eMail+'&intAccessible='+intAccessible+'&intDisability='+intDisability+'&intEmailUpdates='+intEmailUpdates+'&intSports='+intSports+'&intNewsletter='+intNewsletter+'&intHealthCare='+intHealthCare+'&current=2&s_quickReg2=1" scrolling="no" frameborder="0" height="1" width="1"></iframe>');
			}
		}
		$('#quick-reg-step2').hide();
		$('#ACTION_SUBMIT_SURVEY_RESPONSE').hide();
		$('#quick-reg-thank-you').show();
		$('#quick-reg-thank-you').animate({opacity: 1},500);
	}
	return false;
}
function fNameError(){
	$('#error-msg-1').html('* Required.');
	$('#error-msg-1').show();
	$('#cons_first_name').css({'background':'#f2d160'});
}
function lNameError(){
	$('#error-msg-2').html('* Required');
	$('#error-msg-2').show();
	$('#cons_last_name').css({'background':'#f2d160'});
}
function eMailError(){
	if($('#cons_email').val()==''){
		$('#error-msg-3').html('* Required');
	}
	else{
		$('#error-msg-3').html('* Invalid E-Mail');	
	}
	$('#error-msg-3').show();
	$('#cons_email').css({'background':'#f2d160'});
}
function hideAllErrors(){
	$('#error-msg-1').hide();
	$('#error-msg-2').hide();
	$('#error-msg-3').hide();
	$('#cons_first_name').css({'background':'#CEC7DE'});
	$('#cons_last_name').css({'background':'#CEC7DE'});
	$('#cons_email').css({'background':'#CEC7DE'});
}
function regShowOtherInterest(){
	if($('#cons_int_other').is(':checked')){
		$('#interests-other').show();
		$('#cons_int_otherinput').focus();
	}
	else{
		$('#interests-other').hide();
	}
}