/**
 * Frontend page JS styles
 *
 * Project: Tender.pro <br />
 * File: accept.js
 * 
 * @author Maxim <maxim@altsolution.net>
 * @package js
 */

$(document).ready(function(){
	$('#AgreeCheck').click(function() {
		$(this).attr('checked') ? $('#AgreeBtn').attr('disabled','') : $('#AgreeBtn').attr('disabled','disabled');
	});		
	$("#AgreeBtn").click(function() {
		document.location.href = '/registration?step=2';
	});
});	
