$(document).ready(function () {
	$("#descbtn").jHelperTip({
		trigger: "hover", 
		source: "attribute", 
		attrName: "alt", 
		opacity: 0.8, 
		autoClose:true
	});
	$('#submit_btn').click(function(e){
		if (!$('#leftbox input[name="agreeterm"]').attr('checked')) {
			msgbox('Please read Terms & Conditions and Privacy Policy');
			return ;
		}
		$('#registerform').submit();
	});
});